Possible Duplicate:
perceptron problem
I have two files. The "input.data and output.data" . I want to use these files in matlab. Do i need to import these files or directly hardcode their values in the code.
Possible Duplicate:
perceptron problem
I have two files. The "input.data and output.data" . I want to use these files in matlab. Do i need to import these files or directly hardcode their values in the code.
To access the files you can do something like:
load input.data
load output.data
Then you will have two variables called input and output that can be accessed, containing the contents of the files.