How to solve quadratic equations
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi, I have a few lines of code, really dont know whats wrong with it? Any one?
y=zeros((length(x_cell{1}{1})),1);
x=x_cell{1}{1};
for n=1:length(x)
f(n)=fsolve('(1/238.6318^2)*(x(n)-222.8970)^2+(1/115.8401)^2*(y+95.96210^2)=0','y');
end
Thanks
Jing
댓글 수: 0
답변 (1개)
Andrei Bobrov
2012년 8월 9일
try
syms x y;
f = solve((1/238.6318^2)*(x-222.8970)^2+(1/115.8401)^2*(y+95.96210^2),y);
f1 = matlabFunction(f);
out = f1(x);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!