Maximum variable size allowed by the program is exceeded.
古いコメントを表示
i tried this A =reshape( (zeros(vsize*vsize*2)),[],2); but getting Error using zeros Maximum variable size allowed by the program is exceeded. but when i tried A= reshape( (blanks(vsize*vsize*2)),[],2); is fine here vsize is 256
採用された回答
その他の回答 (1 件)
Azzi Abdelmalek
2016 年 3 月 27 日
編集済み: Azzi Abdelmalek
2016 年 3 月 27 日
0 投票
you can check that blanks(n) takes less memory then zros(4) a=blanks(4) b=zeros(4) whos a whos b
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!