马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
×
双坐标轴 [hAx,hL1,hL2] =plotyy(xxx,yyy,xxx,zzz); 双坐标轴的线型 hL1.LineStyle = '--'; hL2.LineStyle = ':'; 双坐标轴的注释过长 title('Multiple Decay Rates') xlabel('Time (\musec)'); ylabel(hAx(1),{'Channel Thermal Noise,id^2','(10e(-23) Amp^2/Hz)'}) % left y-axis 双坐标轴的注释的固定的参数π ylabel(hAx(2),'-2\pi \leq x \leq 2\pi') % right y-axis 坐标轴的注释的某一参数π xlabel(['Population for Year ',num2str(year)]) 坐标轴的注释的上标和下标 xlabel('t_{seconds}') ylabel('e^t') 坐标颜色线条粗细 xlabel('Population','FontSize',12,'FontWeight','bold','Color','r') |