文件名称:function plot
介绍说明--下载内容来自于网络,使用问题请自行百度
绘制函数的图形
1) x~[0, 30]
2) x,y~[-2, 2]
% 二维曲线
x = 0:30; % 冒号的功能…
y = exp(-x/10).*sin(x); % 向量运算,点号的功能
plot(x, y) % 绘制二维曲线
% 三维曲面
[x, y] = meshgrid( -2:0.2:2, -2:0.2:2 ); % 生成网格矩阵
z = x.*exp( -x.^2-y.^2 );
surf( x, y, z) % 绘制三维曲面(Draw a function graph.
Dimensional and three-dimensional curves)
1) x~[0, 30]
2) x,y~[-2, 2]
% 二维曲线
x = 0:30; % 冒号的功能…
y = exp(-x/10).*sin(x); % 向量运算,点号的功能
plot(x, y) % 绘制二维曲线
% 三维曲面
[x, y] = meshgrid( -2:0.2:2, -2:0.2:2 ); % 生成网格矩阵
z = x.*exp( -x.^2-y.^2 );
surf( x, y, z) % 绘制三维曲面(Draw a function graph.
Dimensional and three-dimensional curves)
相关搜索: matlab
(系统自动生成,下载前可以参看下载内容)
下载文件列表
function plot\functiongraph.m
function plot\Plot.fig
function plot
function plot\Plot.fig
function plot
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.