How do you plot RMS of a Colormap?
6 ビュー (過去 30 日間)
古いコメントを表示
Looking to get an RMS value of a 3D plot based on Z Values. I have a colormap that has speed and RPM on x and y with Z as the dependent value.
0 件のコメント
回答 (1 件)
Star Strider
2022 年 1 月 11 日
Depending on the desired result, either use the rms function with the entire matrix (using the (:) convention to force it to be a vector) or take the rms values across a specific dimension.
Z = randn(10);
rms_all = rms(Z(:))
rms_across_rows = rms(Z,2)
.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Colormaps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!