Polynomial

#How can I write a polynomial function in matlab that can take 3 inputs to predict a forth element?
Thanks

回答 (1 件)

Steven
Steven 2011 年 12 月 5 日

1 投票

f = @(x,y,z)(x+y+z);
or
f = inline('x+y+z', 'x', 'y', 'z');
or
function f = myfun(x,y,z)
f = x+y+z;
return
give all
>> f(1,1,1) = 3

3 件のコメント

Paulo Silva
Paulo Silva 2011 年 12 月 5 日
good answer, +1 vote, I hope that's what ali needs
ali Abusnina
ali Abusnina 2011 年 12 月 5 日
Thanks for your help. do you mean my prediction will be just based on summing up the prevoius three inputs? is there any coeffecients in the functions to be optimized?
Steven
Steven 2011 年 12 月 5 日
you can write any function you want - I just showed you some basic examples - such as f = @(x,y,z)(2*x-4*y+pi*cos(z)). As I understand, you want to optimize your function, so you shold take a look at the optimization toolbox.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangePolynomials についてさらに検索

タグ

タグが未入力です。

質問済み:

2011 年 12 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by