How to go through each element of a vector without a for loop

26 ビュー (過去 30 日間)
I would like to write the following code without a for loop. Thanks in advance!
function fh = poly_fun(p)
function polynomial = poly(x)
polynomial = 0;
for ii = 1:length(p)
polynomial = polynomial + p(ii) .* x.^(ii-1);
end
end
fh = @poly;
end

採用された回答

KSSV
KSSV 2020 年 9 月 18 日
編集済み: KSSV 2020 年 9 月 18 日
If P is an array of coefficients and x is the value
n = length(p)-1 ;
iwant = sum(p.*x.^(n:-1:0))
If x is an column array
iwant = sum(sum(p.*x.^(2:-1:0),2)) ;
Read about polyval.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by