Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks
2 次查看(过去 30 天)
显示 更早的评论
Hi, How i can plot 24244x29 availabale measured data against 24244x1 available measured data? The data is in .mat file ! any suggestion ? thanks
0 个评论
采纳的回答
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 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!