Problem with semilog/loglog command.Kindly help.
1 回表示 (過去 30 日間)
古いコメントを表示
Hi everyone, I am trying to create a 3D plot using mesh command.Out of the 3axes only one is on a semilog/log scale while the other two are usual linear scales.Mesh command requires the vectors to have same dimensions whereas semilog command or even loglog command for that matter is giving me a scalar value with unity dimension so I cannot use this command with mesh command.Can anyone suggest me some wayout?Is there any other command for plotting a row matrix in log/semilog scale?
0 件のコメント
採用された回答
Walter Roberson
2013 年 10 月 18 日
Create your mesh with linear scales. Then
set(gca, 'ZScale', 'log'); %use XScale or YScale if appropriate
Note: OpenGL plots cannot have log scales, so if you need both transparency and log plots, you will have problems.
2 件のコメント
Walter Roberson
2013 年 10 月 18 日
I suspect I am missing something? Why not call mesh(Y,X,Z) in that case?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Scatter Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!