Maximum variable size allowed by the program is exceeded.
Mostra commenti meno recenti
I want generation of codes. My program is:
Q=6;
niu=9;
K=niu+1;
Nx=Q^K;
Vk=zeros(Nx,K);
for j=1:1:K
t=1;
for i=1:1:Nx
Vk(i,j)=mod((Vk(i,j)+(t-1)),Q);
a=Q^(j-1);
if mod(i,a)==0
t=t+1;
end;
end;
end;
Vk
It mean my massive size is 6^11X11 Can I split massive in circle? Help me please!!!
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Performance and Memory in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!