云题海 - 专业文章范例文档资料分享平台

当前位置:首页 > 我的课程设计

我的课程设计

  • 62 次阅读
  • 3 次下载
  • 2025/5/4 12:37:49

长 春 大 学

┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ 装 ┊ ┊ ┊ ┊ ┊ 订 ┊ ┊ ┊ ┊ ┊ 线 ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊

学 生 实 习 报 告

1?1?y2 ④ y?ln?1?y2

y代码x=-1:0.01:1; subplot(1,2,1);

plot(x,log((1+sqrt(1-x.^2))./x)+sqrt(1-x.^2)); subplot(1,2,2);

h=plot(x,log((1+sqrt(1-x.^2))./x)+sqrt(1-x.^2)); set(h,'LineWidth',3)

set(h,'Color','r','lineStyle','--') xlabel('x') ylabel('y')

text(2*pi/3,sin(2*pi/3),'\\leftarrow sin(2*pi/3 ) ','FontSize',12'), 结果

共 28 页 第 13 页

长 春 大 学

┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ 装 ┊ ┊ ┊ ┊ ┊ 订 ┊ ┊ ┊ ┊ ┊ 线 ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊

学 生 实 习 报 告

[实习项目] 【10】利用图形对象绘制下列三维图形,要求先利用默认属性绘制曲线,然后通过图形句柄操作来改变曲线的颜色、线型和线宽,并利用文字对象给曲线添加文字标注。

3t?x??1?t?① ? 2?y?3t?1?t3?代码

t=0:0.01:10; x=3*t./(1+t);

y=3*t.*t./(1+t.^3); subplot(1,2,1); plot3(t,x,y); grid on;

subplot(1,2,2); hs=plot3(t,x,y); grid on;

共 28 页 第 14 页

长 春 大 学

┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ 装 ┊ ┊ ┊ ┊ ┊ 订 ┊ ┊ ┊ ┊ ┊ 线 ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊

学 生 实 习 报 告

set(hs,'LineWidth',3)

set(hs,'Color','r','lineStyle','--') xlabel('x') ylabel('y') zlabel('z')

text(1,1.5,1.5,'\\leftarrow x=3*1./(1+1), ','FontSize',12') 结果

y=3*1.*1./(1+1.^3)

② f(x,y)?y1?x2?y2代码x=0:0.01:10; [x,y]=meshgrid(x); z=y./(1+x.^2+y.*y); subplot(1,2,1); plot3(x,y,z); grid on;

subplot(1,2,2); h=plot3(x,y,z);

共 28 页 第 15 页

长 春 大 学

┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ 装 ┊ ┊ ┊ ┊ ┊ 订 ┊ ┊ ┊ ┊ ┊ 线 ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊

学 生 实 习 报 告

grid on;

set(h,'LineWidth',5)

set(h,'Color','y','lineStyle',':') xlabel('x') ylabel('y') zlabel('z')

text(1,1,0.3,'\\leftarrow z=1./(1+1.^2+1.*1)','FontSize',12') 结果

③ z?x2?y2?5sin(xy) 代码x=0:0.01:10; [x,y]=meshgrid(x);

z=x.*x+y.*y-5*sin(x.*y); subplot(1,2,1); plot3(x,y,z); grid on;

subplot(1,2,2); h=plot3(x,y,z); grid on;

共 28 页 第 16 页

搜索更多关于: 我的课程设计 的文档
  • 收藏
  • 违规举报
  • 版权认领
下载文档10.00 元 加入VIP免费下载
推荐下载
本文作者:...

共分享92篇相关文档

文档简介:

长 春 大 学 ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ 装 ┊ ┊ ┊ ┊ ┊ 订 ┊ ┊ ┊ ┊ ┊ 线 ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ ┊ 学 生 实 习 报 告 1?1?y2 ④ y?ln?1?y2 y代码x=-1:0.01:1; subplot(1,2,1); plot(x,log((1+sqrt(1-x.^2))./x)+sqrt(1-x.^2)); subplot(1,2,2); h=plot(x,log((1+sqrt(1-x.^2))./x)+sqrt(1-x.^2)); set(h,'LineWidth',3) set(h,'Color','r','lineStyle',

× 游客快捷下载通道(下载后可以自由复制和排版)
单篇付费下载
限时特价:10 元/份 原价:20元
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219
Copyright © 云题海 All Rights Reserved. 苏ICP备16052595号-3 网站地图 客服QQ:370150219 邮箱:370150219@qq.com