s=[3 7 11]; d=[1 3 5]; %ans= (2,1), (5,2), (8,3) for i=1:3 x0 = [-5; -5]; % Make a starting guess at the solution myfun =@(x) [x(1) + x(2) - s(i); x(1) - x(2) - d(i)]; [x,fval] = fsolve(myfun,x0) % Call end
Pages
Search This Blog
Friday, December 30, 2011
Testing fsolve and anonymous function
တစ်ခါက coefficient တွေ ပြောင်းလဲ နေတဲ့ equation တွေကို ဖြေရှင်းဖို့ လို လာပါတယ်။ ဒါနဲ့ MatLab ဖန်ရှင်တစ်ခု ဖြစ်တဲ့ fsolve ရယ်၊ function handle နဲ့ anonymous function တွေကို သုံးပြီး စမ်းကြည့်ထားတာပါ။
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment