MATLAB: How can i plot whit the command plot a complex number with an imaginary part which is null? Can you make me an example of the code with this number

#plot #complex numberMATLAB

z=1+0*i;

Best Answer

z=complex(1,0);
plot(z,'r+');
Related Question