Filter löschen
Filter löschen

Can anyone help me plz ???

1 Ansicht (letzte 30 Tage)
Anas Blue
Anas Blue am 3 Jul. 2013
I wrote this code but I can't plot anything and there
prompt={'Enter Th Number Of Lines:'};
title='Draw Line ';
n=inputdlg(prompt);
A= cell2mat(n);
[x,y] = ginput(A);
plot(x,y)

Akzeptierte Antwort

Wayne King
Wayne King am 3 Jul. 2013
Bearbeitet: Wayne King am 3 Jul. 2013
prompt={'Enter The Number Of Lines:'};
title='Draw Line ';
n=inputdlg(prompt);
A = str2num(cell2mat(n));
[x,y] = ginput(A);
plot(x,y)
  3 Kommentare
Anas Blue
Anas Blue am 4 Jul. 2013
Bro can I save the (x, y) in array or each one of them in a single array ??? And thanks
Jan
Jan am 4 Jul. 2013
"title" is a Matlab command and shadowing it by a variable can cause unexpected troubles.
A simplification:
A = sscanf(n{1}, '%d');
You can store x and y in one array:
data = [x, y];

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Visual Exploration finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by