If I want to change the middle element of the array n, from n1 to n6, step wise, what code has to be used ?

5 vues (au cours des 30 derniers jours)

Réponses (1)

Rik
Rik le 23 Juil 2020
If you replace n1 with n_{1} (and do the same for the other 5), you can use a loop.
Don't use numbered variables, use arrays instead.
Also, don't use clear all (use clear or clearvars to keep your workspace clean during debugging), and avoid close all if you don't plot anything.
  3 commentaires
Stephen23
Stephen23 le 23 Juil 2020
That is not how MATLAB loop variables work. To know how to use for loops in MATLAB read the documentation:
Usually the simplest and most robust approach is to loop over indices.
Rik
Rik le 23 Juil 2020
To continue on what Stephen mentioned: you probably need something like the code below (and next time post code as code, not as an image).
for k=1:6
temp=n_{k};
%do something with temp
end

Connectez-vous pour commenter.

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by