0

在此处输入图像描述

如何重新调整对数图的垂直轴,以便我的图表的所有线条都从 开始10^0

loglog(ddt,Sqone,'b',ddt,Sqtwo,'m',ddt,Sqthree,'r',ddt,Sqfour,'y',ddt,Sqfive,'c');
title('Partition Function for CRSP Index on Log-Log Plot')

在我上面的代码中,您看到ddt=1:500and Sqone, Sqtwo, Sqthree, etc... 都是我针对不同函数的各种值(根据指数 1,2,3,4,5 而变化)。

4

2 回答 2

0

您可以移动数据本身以在 y 方向上移动图:

%# transform each of the variables: Sqone, Sqtwo, ..
y = y - y(1)  + 10^0;
于 2012-06-01T07:29:12.537 回答
0

set(gca,'YLim',max(get(gca,'YLim'),1))

于 2012-06-01T07:41:04.233 回答