Effacer les filtres
Effacer les filtres

how can i solve this error?

3 vues (au cours des 30 derniers jours)
zahra zamani
zahra zamani le 18 Mai 2020
Commenté : zahra zamani le 18 Mai 2020
Hi . i wanna write h(x) at a for loop. but i have error .
error is : '' Index in position 1 exceeds array bounds (must not exceed 1). "
x=1:0.1:6;
for i=1:0.1:6
h(i,:)=z2+(x(i,:)-ls)*z4;
end

Réponse acceptée

Stijn Haenen
Stijn Haenen le 18 Mai 2020
Modifié(e) : Stijn Haenen le 18 Mai 2020
You should use this:
x=1:0.1:6;
for i=1:numel(x)
h(i,:)=z2+(x(i)-ls)*z4;
end
or even without ':'
x=1:0.1:6;
for i=1:numel(x)
h(i)=z2+(x(i)-ls)*z4;
end
  1 commentaire
zahra zamani
zahra zamani le 18 Mai 2020
thank you so much
error been solve.

Connectez-vous pour commenter.

Plus de réponses (1)

KSSV
KSSV le 18 Mai 2020
Modifié(e) : KSSV le 18 Mai 2020
x=1:0.1:6;
for i=1:length(x)
h(i)=z2+(x(i)-ls)*z4;
end

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by