splitting a graph into a new one
3 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I have some data from my measurements and I have created three vectors 1x45000. My Three vectors are x,F and t. x is my displacement vector, F my force and t my time.
I want to do a subplot which I can do. I want the first subplot to be x vs t, the second subplot F vs t.
Then I would like to have some tools in my first subplot. I want to have some markers that I could adjust in the plot. I want to plot a third subplot with the data between these markers, but only F vs x.
How is this possible. I have no clue...
Thank you.
0 件のコメント
採用された回答
Image Analyst
2014 年 10 月 3 日
編集済み: Image Analyst
2014 年 10 月 3 日
subplot(1,3,1);
plot(t, x, 'b-');
subplot(1,3,2);
plot(t, F, 'b-');
4 件のコメント
Image Analyst
2014 年 11 月 23 日
So, use a slider. Learn how to put controls on a GUI here: http://blogs.mathworks.com/videos/category/gui-or-guide/
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!