Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Applying different equations to sections of a column using a for loop

조회 수: 1 (최근 30일)
Kimberly Hess
Kimberly Hess 2020년 4월 6일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi,
Could anyone tell me how to apply a linear function (I know the coeeficients a and b) to a section of a col and another set of coefficents to another section of the col.
For example my col is 300 rows long. I want to apply y=a1x+b1 to 1 through 100, y=a2x+b2 to rows 101 through 200...
Thanks!
  댓글 수: 2
darova
darova 2020년 4월 6일
I don't understood. You have 300 coefficients or you have 300 values of x? What is col?
Kimberly Hess
Kimberly Hess 2020년 4월 6일
The column represents time it counts up by 1 in each row. for a section of rows i need to apply the function to modify how it counts.

답변 (1개)

darova
darova 2020년 4월 6일
What about for loop?
for i = 1:300
if i <= 100
y(i) = a1*x(i)+b1(1);
elseif i <= 200
y(i) = a2*x(i)+b2(1);
elseif
y(i) = a*x(i)+b(1);
end
end
plot(x,y)

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by