How to match colorbar with colormap ranges in surf?

15 次查看(过去 30 天)
I have a data set that contains values from a certain electronic circuit (voltages (VL), currents (io) and Load resistances (RL)). The size of these arrays is 10x10(x6). (EDITED. I mistakently said 5 times before)
The following code creates the result shown below:
for vsPtr = 1:numel(Vs) % This loop runs 6 times (EDITED. I mistakently said 5 times before)
io_V1_mat = repmat(io(:, vsPtr), [1,points])';
subplot(3, 2, vsPtr)
cm = colormap(parula(points));
srf = surf(io_V1_mat,RL_mat, VL(:,:,vsPtr) ); % do I need to insert a 4th argument with the cm that I need?
cb = colorbar;
set(cb, 'ylim', [min(min(VL(:,:, vsPtr))) max(max(VL(:,:,vsPtr)))]);
cb.Label.String = 'Load Resitance Node Voltage';
cb.Label.FontSize = 12;
view(70, 50)
grid on
grid minor
box on
axis tight
srf = gca;
srf.YScale = 'log';
srf.XScale = 'log';
srf.XLabel.String = 'Iout [A]';
srf.YLabel.String = 'RL [Ohms]';
srf.Title.String = sprintf('Vs = %0.1f V', Vs(vsPtr));
end
My question is:
How on earth can I assign the color range from the colobars to the colormap of each plot? (look at the correspondence I am referring to here: I want to assign the color gradient shown in the colorbar to the colormap from each surf plot).
I have tried every proposed solution here in Mathworks without success (pulling my hair here tbh)
Any ideas?

采纳的回答

Kevin Holly
Kevin Holly 2022-9-2
io_V1_mat=linspace(1000,100000,10);
RL_mat=linspace(1000,1000000,10);
VL=[2000*rand(10,4) 5000*rand(10,6)];
surf(io_V1_mat,RL_mat, VL, VL )% The fourth input is your values that correspond with the color map
colorbar
caxis([0 2000])% You can also change the limits of your colormap.
  3 个评论
Kevin Holly
Kevin Holly 2022-9-3
Ah, I see what you mean. You can add 'FaceColor','interp' to your surf function. For more info, click here.
io_V1_mat=linspace(1000,100000,10);
RL_mat=linspace(1000,1000000,10);
VL=[2000*rand(10,4) 5000*rand(10,6)];
surf(io_V1_mat,RL_mat, VL, VL,'FaceColor','interp')% Add 'FaceColor','interp'
colorbar
caxis([0 4000])
Daniel Melendrez
Daniel Melendrez 2022-9-6
Dear Kevin
My apologies for the late reply
You were absolutely right!
Adding:
'FaceColor', 'interp'
did the trick
I think this information is explained in the 'FaceColor' section from the surf help page, however, it wasn't so evident for me. Perhaps more examples of the use of this modifier are needed.
Final result:
Thanks for your kind help

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Colormaps 的更多信息

产品


版本

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by