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.
V幅のあるベクトルの一部を取得しW たい 結果として を取得したいM = N*Mので、 と言えばM(2,:)のすべての値を取得しますV(2*W : 3*W)。
V
W
M = N*M
M(2,:)
V(2*W : 3*W)
何か案は?
あなたが何を意味するのか完全にはわかりませんが、
M = reshape(V, W,[]);
近づく?それ以外の場合は、試してください
M = reshape(V, W,[]).';
また
M = reshape(V, [],W);