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

1 次查看(过去 30 天)
Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks

采纳的回答

Ameer Hamza
Ameer Hamza 2018-5-20
编辑:Ameer Hamza 2018-5-20
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by