Polynomial
조회 수: 2 (최근 30일)
이전 댓글 표시
#How can I write a polynomial function in matlab that can take 3 inputs to predict a forth element?
Thanks
댓글 수: 0
답변 (1개)
Steven
2011년 12월 5일
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
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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Polynomials에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!