How to add values from if statements to a column
조회 수: 8 (최근 30일)
이전 댓글 표시
say I have
function [x,y]=valuesof(data)
input= data;
t=length(data);
for z=2:t
if input(z-1)>input(z) && input (z)<input(z+1);
x= 'the values of the indices' i.e z
y= 'the input values of the sequence that satisfies the condition' input(z)
end
end
end
how would I create a new colum for each value that satifies my if statement. The 1st column for the indice that the if statement is valid and the 2nd column for the value of input(z)
so for example if I have data of a column as
1
-3
1
0
-1
3
it would store the values of x
as
2
5
and y as
-3
-1
I would not like to use any built in matlab functions such as diff, sign and find etc. Thanks for the help
댓글 수: 0
채택된 답변
Turlough Hughes
2019년 10월 9일
편집: Turlough Hughes
2019년 10월 9일
You just have to make an index for every time your if statement is satisfied. See the modified code.
function [x,y]=valuesof(data)
c=1; % new index
input= data;
t=length(data);
for z=2:t
if input(z-1)>input(z) && input(z)<input(z+1);
x(c,1)=z;
y(c,1)=input(z);
c=c+1;
end
end
end
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!