Description Usage Arguments Value Examples
Function to create simulation data of nonlinear function or nonlinear classification.
| 1 | 
| type | If type="Nonlinearregress", this function creates simulation data of nonlinear function. If type="Nonlinearregress", this function creates simulation data of nonlinear classification. | 
| nsamples | positive integer, the samples size of data. | 
| nvaibles | positive integer, the vaible size of data. | 
| nClasses | positive integer, the number of classes for nonlinear classification. | 
A vector of simulation data of nonlinear function or nonlinear classification .
| 1 2 3 4 5 6 7 8 9 10 11 12 | ## Not run: 
###############################################################
#Example 1
 nsamples = 200
 nvaibles = 1
 # Simulation data of nonlinear function with 200 samples and 1 varible input.
 NonlinregressData=SimData("Nonlinearregress",nsamples,nvaibles)
 #  Simulation data of nonlinear classification with 200 samples and 1 varible input for 2 classes.
 nclass=2
 ClassificationData=SimData("Nonlinearclassification",nsamples,nvaibles,nclass)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.