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!