数理模型 0010

阅读「博物志会员通讯第一百一十四号:续 · 江之浦测候所」后,用 Matlab 模拟了数理模型0010。一种「无限」和「极限」的表达方式,很想摸摸那个小尖尖。

原图

来自博物志会员通讯

函数表达式

来自小爱老师拍摄的画册

WechatIMG78

代码


clc;
clear all;

[u,v] = meshgrid(0:0.01:2*pi,0:0.01:20);
x = cos(u)./cosh(v);
y = sin(u)./cosh(v);
z = v - tanh(v);
surf(x,y,z)
xlabel('x')
ylabel('y')
zlabel('z')
set(gca,'FontSize', 10)
title('Mathematical model 0010')
daspect([1 1 1])
view(3);
saveas(gcf, 'Mathematical model 0010','jpg')

代码生成的近似数理模型 0010

Mathematical model 0010

Comments

This post currently has one response

发表回复

Sidebar