Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
各エントリがでn*nある MATLAB で行列を生成したいのですが、for ループを使用しません。MATLAB ヘルプで関数を見ましたが、その使用方法がわかりません。A(i,j) = j^ii=j=1...nmatrix(m,n,f)
n*n
A(i,j) = j^i
i=j=1...n
matrix(m,n,f)
これはあなたが求めているものですか?
[A,b]=meshgrid(1:n); M=A.^b;