Email: helpdesk@telkomuniversity.ac.id

This Portal for internal use only!

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • Visual Paradigm
  • IBM
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Categories
  • Microsoft
    • Microsoft Apps
    • Office
    • Operating System
    • VLS
    • Developer Tools
    • Productivity Tools
    • Database
    • AI + Machine Learning
    • Middleware System
    • Learning Services
    • Analytics
    • Networking
    • Compute
    • Security
    • Internet Of Things
  • Adobe
  • Matlab
  • Google
  • Visual Paradigm
  • WordPress
    • Plugin WP
    • Themes WP
  • Opensource
  • Others
More Categories Less Categories
  • Get Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • My Account
    • Download
    • Cart
    • Checkout
    • Login
  • About Us
    • Contact
    • Forum
    • Frequently Questions
    • Privacy Policy
  • Forum
    • News
      • Category
      • News Tag

iconTicket Service Desk

  • My Download
  • Checkout
Application Package Repository Telkom University
All Categories

All Categories

  • Visual Paradigm
  • IBM
  • Adobe
  • Google
  • Matlab
  • Microsoft
    • Microsoft Apps
    • Analytics
    • AI + Machine Learning
    • Compute
    • Database
    • Developer Tools
    • Internet Of Things
    • Learning Services
    • Middleware System
    • Networking
    • Operating System
    • Productivity Tools
    • Security
    • VLS
      • Office
      • Windows
  • Opensource
  • Wordpress
    • Plugin WP
    • Themes WP
  • Others

Search

0 Wishlist

Cart

Menu
  • Home
    • Download Application Package Repository Telkom University
    • Application Package Repository Telkom University
    • Download Official License Telkom University
    • Download Installer Application Pack
    • Product Category
    • Simple Product
    • Grouped Product
    • Variable Product
    • External Product
  • All Pack
    • Microsoft
      • Operating System
      • Productivity Tools
      • Developer Tools
      • Database
      • AI + Machine Learning
      • Middleware System
      • Networking
      • Compute
      • Security
      • Analytics
      • Internet Of Things
      • Learning Services
    • Microsoft Apps
      • VLS
    • Adobe
    • Matlab
    • WordPress
      • Themes WP
      • Plugin WP
    • Google
    • Opensource
    • Others
  • My account
    • Download
    • Get Pack
    • Cart
    • Checkout
  • News
    • Category
    • News Tag
  • Forum
  • About Us
    • Privacy Policy
    • Frequently Questions
    • Contact
Home/Matlab/How do I project a map from the plane to a sphere?

How do I project a map from the plane to a sphere?

PuTI / 2025-02-03
How do I project a map from the plane to a sphere?
Matlab News

I need to project points from the 2-D plane to a 3-D unit sphere centered at (0,0,0).
The context is Complex Analysis. The goal will be to map any linear fractional map to the sphere. For now I need to understand how Matlab can achieve the more basic projection of a fractal onto the sphere and do the reverse. I know Matlab has a mapping toolbox (that I dont erally understand either) and that may be sufficient.
Im not asking for a step by step process. Just a general direction to what functions and methods might be useful. I hope this question isnt too broad.
The following code creates a fractal image with data stored in the map(i,j) matrix.
—————————————————————————————————————-
clear all
clc
clf
res = 0.05;
x = -2:res:2;
y = x’;
depth = 32;
grid = zeros(length(x),length(y));
map =zeros(length(x),length(y));
c = 0.30 + 0.5*1i;
for i = 1:length(x)
for j = 1:length(y)
grid(i,j) = x(i)+y(j)*1i;
end
end

for i = 1:length(x)
for j = 1:length(y)
for n = 1:depth
if abs(grid(i,j)) > 2
map(i,j) = n;
break
else
grid(i,j) = grid(i,j)^2 + c;
end
end
end
end
map(map==0) = depth ;
map;
image(map)
axis image
colormap(flipud(jet(depth)))
————————————————————————————–
The data stored in map(i,j) is what needs to be projected.

Thank you allI need to project points from the 2-D plane to a 3-D unit sphere centered at (0,0,0).
The context is Complex Analysis. The goal will be to map any linear fractional map to the sphere. For now I need to understand how Matlab can achieve the more basic projection of a fractal onto the sphere and do the reverse. I know Matlab has a mapping toolbox (that I dont erally understand either) and that may be sufficient.
Im not asking for a step by step process. Just a general direction to what functions and methods might be useful. I hope this question isnt too broad.
The following code creates a fractal image with data stored in the map(i,j) matrix.
—————————————————————————————————————-
clear all
clc
clf
res = 0.05;
x = -2:res:2;
y = x’;
depth = 32;
grid = zeros(length(x),length(y));
map =zeros(length(x),length(y));
c = 0.30 + 0.5*1i;
for i = 1:length(x)
for j = 1:length(y)
grid(i,j) = x(i)+y(j)*1i;
end
end

for i = 1:length(x)
for j = 1:length(y)
for n = 1:depth
if abs(grid(i,j)) > 2
map(i,j) = n;
break
else
grid(i,j) = grid(i,j)^2 + c;
end
end
end
end
map(map==0) = depth ;
map;
image(map)
axis image
colormap(flipud(jet(depth)))
————————————————————————————–
The data stored in map(i,j) is what needs to be projected.

Thank you all I need to project points from the 2-D plane to a 3-D unit sphere centered at (0,0,0).
The context is Complex Analysis. The goal will be to map any linear fractional map to the sphere. For now I need to understand how Matlab can achieve the more basic projection of a fractal onto the sphere and do the reverse. I know Matlab has a mapping toolbox (that I dont erally understand either) and that may be sufficient.
Im not asking for a step by step process. Just a general direction to what functions and methods might be useful. I hope this question isnt too broad.
The following code creates a fractal image with data stored in the map(i,j) matrix.
—————————————————————————————————————-
clear all
clc
clf
res = 0.05;
x = -2:res:2;
y = x’;
depth = 32;
grid = zeros(length(x),length(y));
map =zeros(length(x),length(y));
c = 0.30 + 0.5*1i;
for i = 1:length(x)
for j = 1:length(y)
grid(i,j) = x(i)+y(j)*1i;
end
end

for i = 1:length(x)
for j = 1:length(y)
for n = 1:depth
if abs(grid(i,j)) > 2
map(i,j) = n;
break
else
grid(i,j) = grid(i,j)^2 + c;
end
end
end
end
map(map==0) = depth ;
map;
image(map)
axis image
colormap(flipud(jet(depth)))
————————————————————————————–
The data stored in map(i,j) is what needs to be projected.

Thank you all fractal, stereographic projection, reimann sphere, fractional linear mapping MATLAB Answers — New Questions

​

Tags: matlab

Share this!

Related posts

How to debug C# .NET assembly called from MATLAB?
2025-05-15

How to debug C# .NET assembly called from MATLAB?

How do I set the size of a tile from tiledlayout?
2025-05-15

How do I set the size of a tile from tiledlayout?

Communicate with worker through client
2025-05-15

Communicate with worker through client

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

Categories

  • Matlab
  • Microsoft
  • News
  • Other
Application Package Repository Telkom University

Tags

matlab microsoft opensources
Application Package Download License

Application Package Download License

Adobe
Google for Education
IBM
Matlab
Microsoft
Wordpress
Visual Paradigm
Opensource

Sign Up For Newsletters

Be the First to Know. Sign up for newsletter today

Application Package Repository Telkom University

Portal Application Package Repository Telkom University, for internal use only, empower civitas academica in study and research.

Information

  • Telkom University
  • About Us
  • Contact
  • Forum Discussion
  • FAQ
  • Helpdesk Ticket

Contact Us

  • Ask: Any question please read FAQ
  • Mail: helpdesk@telkomuniversity.ac.id
  • Call: +62 823-1994-9941
  • WA: +62 823-1994-9943
  • Site: Gedung Panambulai. Jl. Telekomunikasi

Copyright © Telkom University. All Rights Reserved. ch

  • FAQ
  • Privacy Policy
  • Term

This Application Package for internal Telkom University only (students and employee). Chiers... Dismiss