Matlab's contour and colormap ignores input values
2 次查看(过去 30 天)
显示 更早的评论
I'm plotting a contour using the contourf function in Matlab and using sound pressure levels and the associated coordinates as an input. The maximum SPL is over 78 dB. The contourf function somehow is only taking values until 75 dB into account but I need a finer resolution what is covering values until the maximum one. Now all values over 75 dB are in the same color.
% Plotting
figure();
contourf(xObsGnewGrid,yObsGnewGrid,obsSplMaxInterp,'LineColor','none');
axis equal;
clrb = colorbar('eastoutside','Ticks',[0:2:100]);
zlab = get(clrb,'ylabel');
set(zlab,'String','SPL [dBA]');
ylabel('Lateral Position [m]');
xlabel('Longitudinal Position [m]');
xlabel('Longitudinal Position [m]');
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!