Select a point in Scope Graph
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Kai Hao Then
am 28 Feb. 2011
Beantwortet: Angelina
am 28 Aug. 2024
How do I select a point in the graph generated using the scope? I want to know the magnitude of the graph.
0 Kommentare
Akzeptierte Antwort
Paulo Silva
am 28 Feb. 2011
For what I can see you can't do it directly in the scope (matlab 2008b), some options:
#1 Export the signals to matlab and analyse them in there, you can save the scope data in a scope option or use the To Worspace block.
#2 Using the MinMax Running Resettable you can see the magnitude max and min of your signal, send the output of that block to one display block.
8 Kommentare
Paulo Silva
am 28 Feb. 2011
Here's another of Doug's excellent video tutorials, he must have special powers to know what tutorials do we need http://blogs.mathworks.com/videos/2011/02/25/creating-a-custom-data-cursor/
Weitere Antworten (3)
Paulo Silva
am 1 Mär. 2011
Here's one way I just learned using the simplot function, example
vdp
set_param(gcs, 'SaveOutput', 'on')
set_param(gcs, 'SaveFormat', 'StructureWithTime')
sim(gcs)
simplot(yout)
I'm sorry for discovering this only now but it works great :)
Kai Hao Then
am 1 Mär. 2011
2 Kommentare
Paulo Silva
am 1 Mär. 2011
%in diferent axes
subplot(311)
plot(simout.time,simout.signals.values)
subplot(312)
plot(simout1.time,simout1.signals.values)
subplot(313)
plot(simout2.time,simout2.signals.values)
%in the same axes
hold on
plot(simout.time,simout.signals.values)
plot(simout1.time,simout1.signals.values)
plot(simout2.time,simout2.signals.values)
legend('simout','simout1','simout2')
Siehe auch
Kategorien
Mehr zu View and Analyze Simulation Results finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!