Transfer data from a figure to variable

1 Ansicht (letzte 30 Tage)
Néstor Monedero
Néstor Monedero am 6 Sep. 2012
Hi,
I'm using Matlab Simulink to simulate the behavior of a electric circuit.
I obtain the average transfer function by using "averaging spectrum analyzer" block. What i need to do is to obtain the data of this average transfer function. I mean, i want to obtain in a vector x the range of frequency and in a vector y the range of gain.
How can i do it?
Thanks in advanced, Néstor

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 6 Sep. 2012
Bearbeitet: Azzi Abdelmalek am 7 Sep. 2012
open axes proprieties of your figure,then click "more proprieties"
  1. select the second plot then click "more proprieties" you will find your data in xdata and ydata
  2. do the same to the third plot
be sur that you select the plot (not only the box)
x=get(gco,'XData');y=get(gco,'YData');
  5 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 27 Okt. 2012
Néstor, be sur to click on the plot, not just on the windows, you will see your points highlighted. when you are done go to matlab command and write
x=get(gco,'XData');y=get(gco,'YData');
Néstor Monedero
Néstor Monedero am 27 Okt. 2012
Thanks Azzi.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Robert Cumming
Robert Cumming am 7 Sep. 2012
to do it without interacting with the mouse at all you can get to the data through the children of the axes handle: e.g.
figure;
plot ( magic(10) );
axes_children = get ( gca, 'children' );
axes_lines = findobj ( axes_children, 'type', 'line' );
xdata = get ( axes_lines, 'xdata' )
ydata = get ( axes_lines, 'ydata' )
  4 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 7 Sep. 2012
It was said in his question. that's what "averaging spectrum analyzer" do
Robert Cumming
Robert Cumming am 7 Sep. 2012
Ok - I've never used that so wouldn't know... You learn something new everyday :)

Melden Sie sich an, um zu kommentieren.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by