splitting a graph into a new one

5 views (last 30 days)
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.

Accepted Answer

Image Analyst
Image Analyst on 3 Oct 2014
Edited: Image Analyst on 3 Oct 2014
subplot(1,3,1);
plot(t, x, 'b-');
subplot(1,3,2);
plot(t, F, 'b-');
  4 Comments
Daniel
Daniel on 22 Nov 2014
Edited: Daniel on 22 Nov 2014
Okey. Yes I mean sliders of some kind. Markers is the wrong term. I want a slider or if there is another comfartable interactive solution in my firat plot that is F vs t.
I have sampled F,x and t. I am plotting F and x vs t. I want a slider in my plot F vs t so I can set two end points that will have two values of my t-vector. Then i would automatically like to have a plot With F vs x for this interval of the two end points that i have choosen. And i want to do this interactive in my first plot.
Image Analyst
Image Analyst on 23 Nov 2014
So, use a slider. Learn how to put controls on a GUI here: http://blogs.mathworks.com/videos/category/gui-or-guide/

Sign in to comment.

More Answers (1)

Daniel
Daniel on 21 Nov 2014
Anyone else?

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!