Feeds
已回答
How to plot real and complex parts of a function in 3d?
clear [x,y] = meshgrid(-10: 0.5: 10); s = x + 1i*y; G = abs(((s+2) ./ ((s.^2) + 6.*s + 18))); figure; surf(x,y,G)
How to plot real and complex parts of a function in 3d?
clear [x,y] = meshgrid(-10: 0.5: 10); s = x + 1i*y; G = abs(((s+2) ./ ((s.^2) + 6.*s + 18))); figure; surf(x,y,G)
4 years 前 | 1