Filter löschen
Filter löschen

how to write a very concise expression for matrix power

1 Ansicht (letzte 30 Tage)
Xin
Xin am 12 Okt. 2016
Kommentiert: dpb am 12 Okt. 2016
I have a row vector, e.g. [1,2,3,4], and I want to put, say 3 different power [1;2;3] to create a matrix as follow:
[1,2,3,4]?^[1;2;3] = [1,2,3,4 ; 1,4,9,16 ; 1,8,27,64].
Anyone knows how to get it without using a loop. Many thanks!

Akzeptierte Antwort

Matt J
Matt J am 12 Okt. 2016
As of R2016b, you can just do this
[1;2;3] .^ [1,2,3,4]
Otherwise, use bsxfun()
  4 Kommentare
Xin
Xin am 12 Okt. 2016
Nice, bsxfun does work. Thank you so much!
dpb
dpb am 12 Okt. 2016
Then please ACCEPT the answer...

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

dpb
dpb am 12 Okt. 2016
>> bsxfun(@power,[1:4],[1:3].')
ans =
1 2 3 4
1 4 9 16
1 8 27 64
>>

Kategorien

Mehr zu Matrix Indexing 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!

Translated by