I am working on pattern recognition using neural network
I looked the matlab examples have inbuilt dataset called (iris_dataset) and it can be loaded using
load iris_dataset
inputs = irisInputs;
targets = irisTargets;
I understand that part, but when i try to create my own data set i have problem in that..
Please assist me how to create my own dataset in the name called (demo_dataset)
When i want to load (demo_dataset) using the code
load demo_dataset
inputs = demo_Inputs;
targets = demo_Targets;
Please assist me , how to achieve it..