摘要: %% 绘制三维曲线 <wiz_tmp_tag id="wiz-table-range-border" contenteditable="false" style="display: none;"> 阅读全文
posted @ 2018-03-21 15:17 司徒鲜生 阅读(3908) 评论(0) 推荐(0) 编辑
摘要: % 等高线矩阵的获取 <!--WizRtf2Html Charset=0 -->C = contourc(peaks(20),3); <!--WizRtf2Html Charset=0 -->% 获取3个等级的等高线矩阵 % 等高线图形的绘制 contour(peaks(20),10);colorm 阅读全文
posted @ 2018-03-21 15:16 司徒鲜生 阅读(10758) 评论(0) 推荐(0) 编辑
摘要: 使用说明:图形绘制时的插值 interp1 %1-D data interpolation interpft %使用fft算法插值 %将原数据x转换到频率域,再逆转换回来更密集的数据采样点 spline %一维Cubic spline(三次样条) data interpolation interp2 阅读全文
posted @ 2018-03-21 15:15 司徒鲜生 阅读(7619) 评论(0) 推荐(0) 编辑
摘要: 标准三维曲面<!--more--> <!--WizRtf2Html Charset=0 -->t=0:pi/20:2*pi; <!--WizRtf2Html Charset=0 -->[x,y,z]= cylinder(2+sin(t),30); <!--WizRtf2Html Charset=0 阅读全文
posted @ 2018-03-21 15:14 司徒鲜生 阅读(3527) 评论(0) 推荐(0) 编辑
摘要: 其他三维图形 %绘制魔方阵的三维条形图 subplot(2,2,1); bar3(magic(4)); %以三维杆图形式绘制曲线y=2sin(x) subplot(2,2,2); y=2*sin(0:pi/10:2*pi); stem3(y); %已知x=[2347,1827,2043,3025], 阅读全文
posted @ 2018-03-21 15:13 司徒鲜生 阅读(4900) 评论(0) 推荐(0) 编辑
摘要: 简介 peaks; axis tight %Set the axis limits to equal the range of the data axis square axis 'auto x' %x轴坐标上下限自动调整 axis off %Plot a surface without displ 阅读全文
posted @ 2018-03-21 15:10 司徒鲜生 阅读(50508) 评论(1) 推荐(1) 编辑