How do I use a vector to evaluate a polynomial function?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a vector of x values that I need to plug into a cubic polynomial. And I keep getting errors
how exactly do I do this? The function is a polynomial and I keep getting errors
??? Undefined function or variable 'y'.
Error in ==> at 21 f(x)=y
OR
??? Error using ==> mpower Inputs must be a scalar and a square matrix.
Error in ==> @(x)x^3-2*x^2-3*x+1
Error in ==> at 21 y=feval(f,x) >>
댓글 수: 0
답변 (1개)
Shashank Prasanna
2013년 2월 16일
You haven't show us how you are calling this function, that would give this question more clarity. In any case if you are calling the function with a vector input you will have to use the "." (dot) notation as below
x = rand(10,1); % some random numbers
f = @(x)x.^2 - 2*x.^2-3*x+1
y = f(x);
댓글 수: 1
Shashank Prasanna
2013년 2월 16일
Josh, please share the exact implementation of your function, it will be easier to assist you if the above doesn't work.
참고 항목
카테고리
Help Center 및 File Exchange에서 Polynomials에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!