Displaying 1 result from an estimated 1 matches for "56x50000".
2009 Oct 27
4
automatically adjusting axis limits
...a collected in field. Each spectra has two columns :
Wavelength (56) and the actual measurement.
Each measurement came in a different .txt file on disk (50000 files in
total). I wrote a script that reads every spectra in a for loop and
constructs two variables :
Wavelength (56) and Reflectance (56x50000). I would like to plot
Reflectance vs Wavelength i.e. overlay 50000 spectra one one top of the
other.
plot(Wavelength, Reflectance) does not work (Matlab would do it):
Error in xy.coords(x, y, xlabel, ylabel, log) :
'x' and 'y' lengths differ
I then tried to construct the two...