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!