MATLAB: Hi, How i can plot 24244×29 availabale measured data against 24244×1 available measured data? The data is in .mat file ! any suggestion ? thanks

data poitsdouble arrayplotting

Hi, How i can plot 24244×29 availabale measured data against 24244×1 available measured data? The data is in .mat file ! any suggestion ? thanks

Best Answer

load the data from file using
data = load('filename');
and the plot using plot() function
plot(data.x, data.y);
here x is the name of 24244x1 variable and y is the name of 24244x29 variable. This command will give you 29 lines on one axes.
Related Question