Ältere Kommentare anzeigen
Antworten (3)
Walter Roberson
am 26 Mär. 2012
0 Stimmen
This is not possible in MATLAB, as MATLAB arrays cannot be indexed at negative numbers or 0, but you want to index y at -3, -2, -1, and 0, along with 1, 2, and 3.
1 Kommentar
fadi rami
am 26 Mär. 2012
Geoff
am 26 Mär. 2012
I think you mean this:
x = -3:3;
y = 2 * x + 3;
plot(x, y);
Image Analyst
am 26 Mär. 2012
0 Stimmen
Don't forget to check your duplicate post in the newsgroup: http://groups.google.com/group/comp.soft-sys.matlab/browse_frm/thread/23153174886ed6bd?hl=en#
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!