How to go through each element of a vector without a for loop
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Jesus Alejandro Rodriguez Morales
am 18 Sep. 2020
Kommentiert: Jesus Alejandro Rodriguez Morales
am 18 Sep. 2020
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
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Polynomials finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!