これは私のプロット コードです。問題は、プロット内の 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