1 Star 0 Fork 0

zhuangbo/matlab2pgfplots

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test3d.m 350 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhuangbo 提交于 2019-04-28 20:58 . Rename functions and arguments
% The MIT License (MIT)
%
% Copyright (c) 2019 Bo Zhuang <sdzhuangbo@hotmail.com>
%
x = linspace(0, 1, 101);
y = linspace(-1, 1, 201);
z = exp(-x'.^2 - y.^2); % get z(x,y) as 101 x 201 matrix
% Plot 3D surface in Matlab
surf(x, y, z');
% Save PGFPlot figure with data
saveplot3d('fig3', x, y, z);
saveplot3d('fig4', x, y, z, 1:5:101, 1:5:201);
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhuangbo/matlab2pgfplots.git
git@gitee.com:zhuangbo/matlab2pgfplots.git
zhuangbo
matlab2pgfplots
matlab2pgfplots
master

搜索帮助