How to add power of x from 0 to n-1
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have a function vandermonde
function c = vandermonde(x, y)
V = [x.^0 x x.^2 x.^3]
c = V \ y;
end
it works good if I give a vector x with 4 components. But how could I make it general, even if I give a vector x with 5,6 or even 15 components? so that V = [x.^0 x x.^2 x.^3 x.^4 x.^5 .... x.^14] ? with n or something like that?
0 Commenti
Risposta accettata
Più risposte (1)
Karim Belkhiria
il 5 Nov 2015
Modificato: Karim Belkhiria
il 5 Nov 2015
1 Commento
Matt J
il 5 Nov 2015
I wonder if your teacher would also have accepted this
V=exp(log(x(:))*(0:n-1))
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!