Trying to create polyval but mine only works for a single value of x , how to make it work for an array?
조회 수: 6 (최근 30일)
이전 댓글 표시
i am trying to create polyavl but in deed i was only succssufull in creating a function that does polyval work in condition that x is a single value , how can i make my function work wetheir my x is a single value or an array?
my fonction that only works for a single value of x :
function [Y] = polyvalali(A,x)
Y = 0;
value = length(A) - 1;
p = value:-1:0;
for i = 1:value+1
Y = Y + A(i) * x^p(i);
end
댓글 수: 0
답변 (1개)
Andrei Bobrov
2020년 4월 9일
function Y = polyvalali(A,x)
Y = x(:) .^ (numel(A)-1:-1:0) * A(:);
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!