I used this lines in my program:
...
A=zeros(x,y);
save 'A.txt' A -ascii;
B=zeros(x,y+1);
save 'B.txt' B -ascii;
But when i run it, Memory Overflow occur and the program would be crashed. because variables A and B are very large.
I want a way like below lines that save zeros(x,y) to file directly instead of use memory.
save 'A.txt' zeros(x,y) -ascii;
But this not worked.