PLOT COMMAND USING string arguments
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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?
0 Kommentare
Akzeptierte Antwort
Kye Taylor
am 12 Jun. 2013
Bearbeitet: Kye Taylor
am 12 Jun. 2013
Maybe try
x = eval(get(text1,'string'));
y = eval(get(text2,'string'));
axes(plot1);
plot(x,y);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations 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!