Mobius Band

Mobius Band
1.8K Downloads
Updated 4 Sep 2001

No License

The Mobius Band is the building block for non-orientable surfaces. It is formed by joining the ends of a rectangle with a twist (180 degrees). Any non-orientable surface contains a Mobius Band, and any surface which contains a Mobius Band is necessarily non-orientable. It is not closed--hence it is not a surface, and it contains one boundary curve. The Mobius Band cannot be embedded in the plane, R^2. This is the usual picture of the Mobius band in R^3. It is formed by joining the ends of a rectangle with one twist of 180 degrees.

Code:

for a=0:112;
for b=0:60;
u=a/2;
w=b/2;
v=w/50-0.3;
X(a+1,b+1)=cos(u)+v*cos(u/2)*cos(u);
Y(a+1,b+1)=sin(u)+v*cos(u/2)*sin(u);
Z(a+1,b+1)=v*sin(u/2);
T(a+1,b+1)=u;
end
end

surf(X,Y,Z,-X)
view(55, 50)
shading interp
light
lighting phong
material dull

set(gcf, 'color', 'w')
colormap hsv

Cite As

Altan Bassa (2024). Mobius Band (https://www.mathworks.com/matlabcentral/fileexchange/643-mobius-band), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R10
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Triangulation Representation in Help Center and MATLAB Answers
Tags Add Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.0.0