Info

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

working with iterations of y?

조회 수: 1 (최근 30일)
soloby
soloby 2015년 6월 22일
마감: MATLAB Answer Bot 2021년 8월 20일
if i have a code of something like
x = -10:0.1:10; f1 = trapmf(x,[-2 0 0 2]); f2 = trapmf(x,[3 6 6 9]);
and I want to work with these plots for each y-intercept from 0 to 1, how would I do it?
for example, I want to find the x-intercepts of f1 and f2 for every y of 0:0.005:1; (since x = 201x1);
I think if there's a way to save all the values with a for loop, I can make this work? something like
for i = 1:201
y(i) = [x(i),f1(i)]
end
any thoughts are appreciated.. thank you.

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by