matlab编写一个函数绘图6
发布网友
发布时间:2023-10-07 06:29
我来回答
共1个回答
热心网友
时间:2023-11-27 16:23
clc;clear
t=0:100:2000;
W=10;
Wt=81.25+10000*(W-81.25)./(16*t+10000);
plot(t,Wt,'r-o','markersize',6,'markeredgecolor','r','markerfacecolor','r')
xlabel('t','fontsize',14,'fontname','times new roman')
ylabel('W(t)','fontsize',14,'fontname','times new roman')
box off
grid on