Effacer les filtres
Effacer les filtres

My for loop is not executing. Atleast that's what I think becoz its not returning any value. What seems to be the problem?

1 vue (au cours des 30 derniers jours)
a = load('ra1.dat');
x = a(:,1);
y = a(:,2);
hold on
plot(x,y)';
for i=1:1950;
a(((y(i+50)-y(i))/(x(i+50)-x(i)))>10);
end
  1 commentaire
KSSV
KSSV le 27 Sep 2016
Modifié(e) : dpb le 27 Sep 2016
Dear friend
What you want to do actually? You read data from ra1.dat file and plotted x,y..then you ran a for loop..what for you wanted this loop? Does it throw any error? If not, it will show nothing as you have terminated the result. You are not using the data in the loop any where. what is the use of this loop?

Connectez-vous pour commenter.

Réponse acceptée

Steven Lord
Steven Lord le 27 Sep 2016
The line inside the loop:
a(((y(i+50)-y(i))/(x(i+50)-x(i)))>10);
extracts a piece of the array a and then essentially throws away the extracted piece. It's like you were in the soup aisle at your local grocery store. You may have picked up a can of chicken noodle soup to look at it, but you put it back on the shelf. When you get to the register to buy your groceries, there won't be anything in your shopping cart.
Add code inside your for loop that actually does something with the extracted piece of the array -- put it in your shopping cart, hand it to another shopper, start juggling it (actually, the employees of the store probably wouldn't like it if you did that last action.) If you're not sure how to do something with that piece of the array, describe what you want to do and the readers may offer some guidance. We know lots of MATLAB noodle soup recipes (with L-shaped membrane noodles, naturally :)

Plus de réponses (0)

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