How do you plot RMS of a Colormap?
조회 수: 5 (최근 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!