Complex Log 3D-Plot - Function?
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi, does someone have a function, where one can plot a complex logarithm in a 3D space? The axis should be x=Re(z), y=Im(z) and z=Re(w)
댓글 수: 1
Nikunj Kothari
2017년 2월 14일
Once way to plot a complex logarithm in 3D space is by storing each of the
x, y, and z
variables in an array, and then using the
plot3(x,y,z)
To make a log scale plot, you can set the axis property which you want to set as a log-scale by using the command
set(gca,'XScale','log')
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Log Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!