First Class Example
This example introduces us to the world of MATLAB/octave:
x = [1,2,2,2,1,4,6,7,5,3,4,5,7,9,8,6,4,3,2,3,4,5,6,3,3,2,3,4];The student should try and follow this in MATLAB or octave to get a basic understanding of the interface and language. Try and take the following data b11104a4 and analyze it. To load this data just use the command:
octave:1> load b11104a4.dat
We can as an example get the mean of this data:
octave:2> mean(b11104a4)
See if you can look at this data with other functions that might help you extract some meaning in this data.
TO BE CONTINUED