1.clear;
2.clc;
3.a = 'hello world';
4.M = 4;
5.N = 3;
6.Zcell= cell(M,N);
7.for i = 1:M
8.for j =1:N
9.Zcell{i,j}=a; %赋值
10.end
11.end
12.xlswrite('Zcell.xlsx',Zcell);
13.% {1,1}是给cell单元赋给内容。而 Zcell(1,1)类似于得到字符串的指针。
1.clear;
2.clc;
3.a = 'hello world';
4.M = 4;
5.N = 3;
6.Zcell= cell(M,N);
7.for i = 1:M
8.for j =1:N
9.Zcell{i,j}=a; %赋值
10.end
11.end
12.xlswrite('Zcell.xlsx',Zcell);
13.% {1,1}是给cell单元赋给内容。而 Zcell(1,1)类似于得到字符串的指针。