我試圖找到一個更好的\更緊湊的方式來添加很多「文本塊」(我稱之爲「文本塊」的一些文字有多行)到一個圖。例如參見下面的圖: 我用於生成此圖中的代碼是: x=-4*pi:pi/20:4*pi;
y=cos(x);
% generate positions for the text blocks
[ypos,xpos]=find(ismember(y,max(y))); % finds mult
我在Windows 7 PC上使用64位的matlab R2012a(7.14.0.737)。 我有2臺顯示器。我希望能夠在第二臺顯示器(左側)上打開一個matlab GUI圖。 在命令行打開數字有工作正常。 h = figure(... , 'position',[some -value on the other screen y w h)
但是GUI圖形總是在第一監視器上儘管1製備)進入正
在MATLAB繪製我已經把我的代碼一小部分 figure, plot(Clip_M_EF(New_M_index(:,1),1),'xg'), axis off, hold on, plot(New_M_EF_MS,'*r'), hold on, plot(Clip_M_EF_GS(New_M_index(:,1),1),'+b') 你看,因爲我已經把軸模式爲「關」下面的情節不能被繪製成任意軸。但
所以我在MATLAB一個簡單的循環,執行以下操作: for p = 1:100
x = 4.*randn(1,100);
y = 7.*randn(1,100);
figure(1)
plot(randn(1,100));
figure(2);
plot(randn(1,100));
end
x和y是編造的,但是這是它的JI