Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Variable in a for loop

1 Ansicht (letzte 30 Tage)
Collin McCabe
Collin McCabe am 30 Okt. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
In a for loop that I'm writing, I am trying to display two variables set as vectors like:
x = 1:50
y = x
x = 1:25
However, when I try to display both x and y afterwards, they both display the modified x value. How can I fix this?

Antworten (1)

per isakson
per isakson am 30 Okt. 2020
Bearbeitet: per isakson am 30 Okt. 2020
"[...] they both display the modified x value" No they don't. This script
%%
for jj = 1:100
x = 1:12;
y = x;
x = 1:6;
end
% display both x and y afterwards
disp( x )
disp( y )
displays
1 2 3 4 5 6
1 2 3 4 5 6 7 8 9 10 11 12
>>
and
>> whos x y
Name Size Bytes Class Attributes
x 1x6 48 double
y 1x12 96 double

Community Treasure Hunt

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

Start Hunting!

Translated by