1. matlab绘图
官方说明:https://ww2.mathworks.cn/help/matlab/creating_plots/types-of-matlab-plots.html
基本图形绘制
hold on
x=linspace(0, 2*pi, 100);
y=sin(x); z=cos(x); %基本函数
plot(x,y,'-',x,z); %基本绘图
legend('sin(x)','cos(x)'); %注解
title('test'); %标题
xlabel('x'); ylabel('y or z'); %坐标标注
str='$$ \sin x $$';
text(1.19,0.42,str,'Interpreter','latex','FontSize',18); %图表中加入latex公式
annotation('arrow','x',[0.35 0.4],'y',[0.71 0.78]); %创建注释
%annotation(lineType,x,y) 创建一个在当前图窗中的两个点之间延伸的线条或箭头注释。
%将 lineType 指定为 'line'、'arrow'、'doublearrow' 或 'textarrow'。
%将 x 和 y 分别指定为 [x_begin x_end] 和 [y_begin y_end] 形式的二元素向量。
hold off
输出结果为:
图1. 基本图形绘制
02-14 00:13