What the difference between plotting the function f(z) (where its coefficients change with time) and plot of its zeros which evolves with time t
Show older comments
I use this function which has coefficints change with time t
first I plotted its roots (which evolve with time t) an I have got pathes in complex plane.
second I want to plot this function f(z),(which in complex variable zand its cofficients evolve with time t ) is the graph of this function pathes or serface? and if it is serface how can I plot it in complex plane?
for example if Iwant to plot this function'
\begin{align*}
f_(z) =(0.5000 + 0.0000i)+( 0.5001 + 0.8661i) z+(-0.2500 + 0.4330i)z^2
\end{align*}\\
1 Comment
Aisha Mohamed
on 10 Apr 2022
Answers (1)
Chandra
on 7 Apr 2022
Hi,
The value of z is a complex value, so provide x and y values in z accordingly and provide the variable to function
>>x = 1:10; %real part of z.
>>y = 11:20; %imaginary part of z
>>z = x+i*y; %complex value
>>f_ =(0.5000 + 0.0000i)+( 0.5001 + 0.8661i)*z+(-0.2500 + 0.4330i)*z.^2
>> plot(real(f_),imag(f_)); %plotting the graph
1 Comment
Chandra
on 11 Apr 2022
Hi,
The z complex plane has two or three coefficients, if it has 2 coefficients then plot it is path, if it has 3 coefficients then it is surface plot (use surf matlab function)
x can be considered as a function of t and y is function of t and combined into z function
>>t = 0:0.2:2;
>>x = sin(2*pi*10*t) % example function of x with respect to t
>>y = cos(2*pi*10*t) % example function of y with respect to t
>>z = x+iy %here z can be considered as 2 coefficients plane.
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!