PLOT COMMAND USING string arguments

1 visualización (últimos 30 días)
IO2000
IO2000 el 12 de Jun. de 2013
I have the following code if true
x = get(text1,'string');
y = get(text2,'string');
axes(plot1);
plot(x,y);
end
but I got and error :
ERROR using Plot invalid first data argument| | the string on text1 is -10:10 and the string in text2 is x.^2
What is wrong?

Respuesta aceptada

Kye Taylor
Kye Taylor el 12 de Jun. de 2013
Editada: Kye Taylor el 12 de Jun. de 2013
Maybe try
x = eval(get(text1,'string'));
y = eval(get(text2,'string'));
axes(plot1);
plot(x,y);

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by