摘要: clc clear close all Sita = 0:0.25:5; y1 = -20000./(1.6.*Sita.^2-288.00); y2 = -20000./(1.2.*Sita.^2-208.00); y3 = -56000./(1.92.*Sita.^2-294.400); y4 阅读全文
posted @ 2023-04-29 10:15 Ada_CN 阅读(65) 评论(0) 推荐(0) 编辑
摘要: set(gca,'ycolor',[0 0 0]);%颜色 %设置不同字体、字型、以及换行显示,换行显示用{}包住每行字即可 yr = ylabel('\it\fontname{Times New Roman}y_{CS}^{M4}... \rm\fontname{Times New Roman}\ 阅读全文
posted @ 2023-04-29 10:12 Ada_CN 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 先将原本的坐标轴轴线关闭 ax=gca; ax.YAxis.Visible = 'off'; ax.XAxis.Visible = 'off'; ax.ZAxis.Visible = 'off'; 然后调用函数 ax.LineWidth=1.2; ax.XAxisLocation='origin'; 阅读全文
posted @ 2023-04-29 10:08 Ada_CN 阅读(218) 评论(0) 推荐(0) 编辑
摘要: clc clear close all %读取数据文件 [num, txt, raw] = xlsread('data.xlsx'); %将第一列读进来作为时间 dateStrings = raw(2:end, 1); %将第一列设置为时间数字格式 x_raw=datenum(dateStrings 阅读全文
posted @ 2023-04-29 09:32 Ada_CN 阅读(239) 评论(0) 推荐(0) 编辑