Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Plotting using a for loop

2 visualizzazioni (ultimi 30 giorni)
Fraser Brooker
Fraser Brooker il 26 Ott 2020
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I'm having trouble with plotting a graph when using a for loop to generate the values.
x = 0: 0.1 : 1.4
for x = 0:0.1:1.4
y = iteration2shear(x)
end
plot(x,y)
hold on
The function I'm calling generates the correct values for each value of y, but im struggling to generate a plot to illustrate it.

Risposte (2)

Rik
Rik il 26 Ott 2020
You are forgetting to index your y variable. In general it is easier to write your code like this in such cases:
x = 0: 0.1 : 1.4;
y=zeros(size(x));
for n=1:numel(x)
y(n) = iteration2shear(x);
end
plot(x,y)

Jon
Jon il 26 Ott 2020
You need to save your values to a vector you are just replacing a single scalar value
  1 Commento
Jon
Jon il 26 Ott 2020
I see that by the time I answered your question Rik had also given you a good answer

Community Treasure Hunt

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

Start Hunting!

Translated by