Can I use multiple equation in Cftool?

2 次查看(过去 30 天)
I'm learning to use cftool and i want to use "Custom Equation" and I already know how to use it.
but the value of my function is not always the same.
I have this:
fk=sign(qp)*fc+fv*qp;
if qp == 0
if abs(tao)< fs
fq = tao;
else
fq = fs * sign(tao);
end
else
fq = fk;
end
For the first function I use this:
sign(x)*a+b*x;
And It works. But how can i use "if" or adjust my function to the different parameters?

回答(1 个)

Matt J
Matt J 2016-5-23
No. You have more flexibility with LSQCURVEFIT. However, either of these toolbox functions are overkill for the equations you've shown. They are linear w.r.t the unknowns "a" and "b", so just use a linear least square solver (e.g., backslash) to solve for them.

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by