tags:

views:

82

answers:

2

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.

+1  A: 

either hardcode, or take a file handle as a function argument.

rlbond
+1  A: 

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.

Matt

related questions