-1

这是我的情节代码。问题是我的情节中的两条线具有相同的颜色,我需要一个特殊的情节中的每一行(总共 4 行)。

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 
4

2 回答 2

0

那么使用保持功能做这样的事情:

mycolors=['m','k','y','r'];
figure();
for i =1:4;
    p=plot(temp[i],conds);
    set(p,'Color',mycolors[i],'LineWidth',2)

    xlabel('Temperature [\circC]'), ylabel ('Conductivity [s/m]');
    title('Different frequencies');
    legend('1.02 GHz','1.50 GHz','2.01 GHz','3 GHz');
    hold all;
于 2013-07-05T01:09:35.350 回答
0

在“Matlab 绘图颜色”上进行简单的 Google 搜索,将其作为第二个链接:

http://www.mathworks.com/help/matlab/ref/plot.html

这有许多带有不同颜色的图的示例。感觉就像您在发布问题之前没有做任何研究。

于 2013-07-04T20:43:19.480 回答