博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
魔幻的曲率--已知曲率画图形
阅读量:6761 次
发布时间:2019-06-26

本文共 678 字,大约阅读时间需要 2 分钟。

已知曲率为 $1/5+2\sin(s)-9/2\sin(s/2)$, 则图形为

转载自 .

 

感谢  指出错误, 并给出了一些 Mathematica 代码 (只是 copy 过来, 我也不会用, 也不想看了, 转载至此):

 

 

1 curve[\[Kappa]_, \[Tau]_, c_, d_, options___] :=  2  Module[{r, s, t, n, b},  3   solution =  4    First@NDSolve[{t'[s] == \[Kappa][s] n[s],  5       n'[s] == -\[Kappa][s] t[s] + \[Tau][s] b[s],  6       b'[s] == -\[Tau][s] n[s], r'[s] == t[s], r[0] == {
0, 0, 0}, 7 t[0] == {
1, 0, 0}, n[0] == {
0, 1, 0}, b[0] == {
0, 0, 1}}, {r, t, 8 n, b}, {s, c, d}]; 9 ParametricPlot3D[r[s] /. solution, {s, c, d}, options]]10 curve[15 Sin[#]^2 &, Cos[#] &, -50, 50, 11 PlotStyle -> {Thickness[0.001], Blue}, Boxed -> False, Axes -> False]

而得到

 

你可能感兴趣的文章
Vc6.0打开该文件坠毁
查看>>
[LeetCode] Lowest Common Ancestor of a Binary Search Tree 二叉搜索树的最小共同父节点
查看>>
EasyUI-DataGrid多线动态实现选择性合并
查看>>
2015第29周三
查看>>
hdu5024(dp)
查看>>
算法-无向图(连通分量,是否有环和二分图)
查看>>
IOS runtime动态运行时一
查看>>
媒体播放器三大底层架构
查看>>
CCBValue
查看>>
HOSt ip is not allowed to connect to this MySql server, MYSQL添加远程用户或允许远程访问三种方法...
查看>>
C#一些知识点:委托和事件的区别
查看>>
linux修改挂载目录
查看>>
Cocos2d-js-v3.2 在 mac 上配置环境以及编译到 Andorid 的注意事项(转)
查看>>
android开源项目学习
查看>>
提升Mac os x 10.10+xcode6.1之后,Cocoapods发生故障的解决方案
查看>>
Developer Tool - 1. Text Tool and GNU/Linux Tool
查看>>
OAuth 2.0 安全案例回顾
查看>>
标准API使用小技巧
查看>>
jQuery Validate插入 reomte使用详细的说明
查看>>
科普:揭秘手机软件自启原理
查看>>