Hello! I have a loop and I cannot configure it correctly
x=(0:1:100);
n=length(x);
for i=1:10
y=data(:,i); % data matrix 100000x10
end
with this format, the matrix considers all the values ​​for me, but I only need those that fall in length n
for i=1:n
y=data(101,i); % data matrix 100000x10
end
my task is to count the required number of lines, but I just can’t get such an option

댓글 수: 2

Rik
Rik 2019년 8월 27일
What do you mean? You really need to make your question as clear as possible: describe your input and describe the required output. Also be aware that using length is a bad habit. You should either use numel or the size(A,dim) syntax.
but I only need those that fall in length n
You want nth row element of each column
y = data(n,:);
or you want nth row element of specific column
specific_column = 2;
y = data(n,specific_column);
Or you want element from each column with a gap equal to n
y = data(n:n:end,:);
Not really sure what you want to achieve but I hope above code helps you out !

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

 채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 8월 27일
편집: KALYAN ACHARJYA 2019년 8월 27일

0 개 추천

"with this format, the matrix considers all the values ​​for me, but I only need those that fall in length n"
x=(0:1:100);
n=input('Enter the required Length');
for i=1:n
y(i)=x(i);
end
y
Without Loop:
x=(0:1:100);
n=input('Enter the required Length');
y=x(1:n)
*Please note that n must be same or smaller than actual x length.

댓글 수: 2

Rik
Rik 2019년 8월 27일
This misses the point that the data is actually a matrix, so this probably isn't the solution.
May be, but If we consider the data, then there is no role of x
n=input('Enter the required Length');
y=data(1:n)

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

질문:

2019년 8월 27일

댓글:

2019년 8월 27일

Community Treasure Hunt

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

Start Hunting!

Translated by