displaylatenttraces.m

来自「Continuous Profile Models (CPM) Matlab T」· M 代码 · 共 27 行

M
27
字号
function displayLatentTraces(z,str1,str2)numClass = size(z,2);if numClass==2    myAx=splitAxes(3,1);    axes(myAx{1});    plot(z(:,1),'r-');    hold on;    plot(z(:,2),'g-');    legend(str1,str2);    axes(myAx{2});    plot(z(:,1),'r-');    legend(str1);    axes(myAx{3});    plot(z(:,2),'g-');    legend(str2);    myAx{1};elseif numClass==1    figure,plot(z,'k-');    legend(str1);end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?