これは私のプロット コードです。問題は、プロット内の 2 つの行が同じ色になっていることです。プロット内の各行 (合計 4 行) に特別なものが 1 つ必要です。
for i=1:nFolderContents;
[~, data] = hdrload(folderContents(i,:));
if size(folderContents(i,:),2)<size(folderContents,2);
temp=folderContents(i,6:9);
else
temp=folderContents(i,6:7);
end
temp1(i)=strread(temp);
w=2*pi*(data([35 51 68 101],1));
permfreespace=8.854e-12;
perm=data([36 52 69 101],3);
cond=perm.*w.*permfreespace;
conds([36 52 69 101],i)=cond;
hold on
end
figure(4);plot(temp1,conds);
gcf=figure(4);
set(gcf,'Position', [0 0 295 245]);
xlabel('Temperature [\circC]'), ylabel ('Conductivity [s/m]');
title('Different frequencies');
legend('1.02 GHz','1.50 GHz','2.01 GHz','3 GHz');
axis([20 52 0 4]);
box on
新しいコード:
conds=zeros(101,28);
for i=1:nFolderContents;
[~, data] = hdrload(folderContents(i,:));
if size(folderContents(i,:),2)<size(folderContents,2);
temp=folderContents(i,6:9);
else
temp=folderContents(i,6:7);
end
temp1(i)=strread(temp);
w=2*pi*(data([35 51 68 101],1));
permfreespace=8.854e-12;
perm=data([36 52 69 101],3);
cond=perm.*w.*permfreespace;
conds([36 52 69 101],i)=cond;
hold all
end
diff = hsv(101);
for i=1:101
figure(4),plot(temp1(1,:),conds(i,:),'color',diff(i,:));
hold all;
end
gcf=figure(4);
set(gcf,'Position', [0 0 295 245]);
xlabel('Temperature [\circC]'), ylabel ('Conductivity [s/m]');
title('Different frequencies');
legend('1.02 GHz','1.50 GHz','2.01 GHz','3 GHz');
axis([20 52 0 4]);
box on
問題は、凡例ボックスに同じ色が表示されることです。