Can some one help me why this command is not working to convert this vector into matrix form having each row should be three columns. So order of new matrix should be should be 5x3. i need this command so far i can use it for nxn matrix.
5 ビュー (過去 30 日間)
古いコメントを表示
G =[0 0 0 +0.2000i -0.2500i +0.0500i 0 0 0 -0.2000i +0.2500i -0.0500i 0 0 0]
??? Undefined command/function 'G2mat'.
Error in ==> fullloop at 49
[mat,padded] = G2mat(G,3)
>> [mat,padded] = G2mat(G,3)
??? Undefined command/function 'G2mat'.\
Can some one help me why this command is not working to convert this vector into matrix form having each row should be three columns. So order of new matrix should be should be 5x3. i need this command so far i can use it for nxn matrix.
1 件のコメント
Geoff Hayes
2014 年 8 月 27 日
Rizwan - try to limit your question header to something simple and concise. There is no need to paste four lines of text into it, especially if you include that same text in your question body.
回答 (4 件)
Cute Doll
2014 年 8 月 27 日
1 件のコメント
Geoff Hayes
2014 年 8 月 27 日
vec2mat is the name of the function. It has nothing to do with the name of the variable being vec. So in your case, you would just type
[gAsMtx,padded] = vec2mat(G,3);
The name of the function does not change.
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!