필터 지우기
필터 지우기

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 (최근 30일)
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
KSSV
KSSV 2016년 9월 27일
편집: dpb 2016년 9월 27일
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?

댓글을 달려면 로그인하십시오.

채택된 답변

Steven Lord
Steven Lord 2016년 9월 27일
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 :)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by