cplxmap issue when trying to plot z^(1/3)

조회 수: 2 (최근 30일)
dustin
dustin 2014년 10월 4일
댓글: Caba 2017년 8월 10일
I am trying to plot z^(1/3) using cplxmap. However, whenever I run my code, I recieve the following errors that are occuring in the function cplxmap:
Error using mesh (line 79)
Z must be a matrix, not a scalar or vector
Error in cplxmap (line 31)
mesh(x,y,m*s,blue*s);
Error in paper (line 16)
cplxmap(z, w)
The code I am running is:
clear all
close all
r = linspace(0, 1, 1000); % radius vector
theta = linspace(0, 2*pi, 1000); % angle vector
z = r.*exp(1i*theta); % defines cplxgrid
x = real(z); % real z
y = imag(z); % imaginary z
w = z.^(1/3); % w = z^(1/3)
u = real(w); % real w
v = imag(w); % imaginary w
figure(1);
cplxmap(z, w)
colormap(jet)
  댓글 수: 3
chadi cream
chadi cream 2016년 8월 26일
편집: chadi cream 2016년 8월 26일
you can
z=cplxgrid(10); w=z.^(1/3); cplxmap(z, w)
Caba
Caba 2017년 8월 10일
You have to create a meshgrid (matrix) from the two column vectors, r and theta. Reduce the number of elements from 1000 to something more manageable, e.g. 51. Try different values in R=linspace(0,1,M), like M=21,51,101
R = linspace(0, 1, 51); % radius vector Theta = linspace(0, 2*pi, 51); % angle vector [r,theta] = meshgrid(R,Theta); % creating a meshgrid

댓글을 달려면 로그인하십시오.

채택된 답변

Star Strider
Star Strider 2014년 10월 4일
A bit further down in the documentation for that example, it mentions cplxroot. See if:
cplxroot(3)
does what you want. If you want to generate your own plot, in that example ‘z’ is generated by the cplxgrid function.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by