MATLAB绘制克莱因瓶

MATLAB绘制克莱因瓶

Matlab 复制代码
clc;close all;clear all;warning off;% clear all
rand('seed', 100);
randn('seed', 100);
format long g;


% Parameters
u_range = linspace(0, 2*pi, 100);
v_range = linspace(0, pi, 50);
[U, V] = meshgrid(u_range, v_range);

% Parametric equations for the Klein bottle
x = (3 + cos(U/2).*cos(V) - 0.5*cos(U).*cos(2*V) - sin(U/2).*sin(2*V)).*cos(U);
y = (3 + cos(U/2).*cos(V) - 0.5*cos(U).*cos(2*V) - sin(U/2).*sin(2*V)).*sin(U);
z = 4*sin(U/2).*cos(V);

% Plot the Klein bottle
figure;
surf(x, y, z, 'FaceColor', 'blue', 'EdgeColor', 'none');
hold on;
xlabel('X');
ylabel('Y');
zlabel('Z');
title('Klein Bottle');
grid on;
axis equal;
view(3); % Set the viewing angle
camlight; % Add lighting
lighting phong; % Use phong lighting
hold off;
相关推荐
禾乃儿_xiuer11 分钟前
《Python制作动态爱心粒子特效》
开发语言·python·生活·pygame·爱心代码·python表白·初学者入门
2401_8582861126 分钟前
97.【C语言】数据结构之栈
c语言·开发语言·数据结构·链表·
ModelBulider35 分钟前
十四、SpringMVC的执行流程
java·开发语言·后端·spring·springmvc
军训猫猫头1 小时前
36.矩阵格式的等差数列 C语言
开发语言·c++
希言JY2 小时前
C语言 | 指针 | 野指针 | 数组指针 | 指针数组 | 二级指针 | 函数指针 | 指针函数
c语言·开发语言
hccee2 小时前
C# 异常处理、多个异常、自定义异常处理
开发语言·算法·c#
hccee2 小时前
C#中的方法
开发语言·c#
Xiaoyu Wang2 小时前
Go八股(Ⅴ)map
开发语言·后端·golang
悄悄敲敲敲2 小时前
C++:异常
开发语言·c++
co0t2 小时前
计算机组成与原理(2) basic of computer architecture
java·开发语言