missing data in surface plot
显示 更早的评论
i should surf plot my data points x(14000),y(26),z(26x14000) , none of these points have missing data, but when i do the surf plot and view it using view(0,90) i could see missing data(white patches) which is never expected because my colorscale is parula which ranges from blue to yellow
5 个评论
Walter Roberson
2020-1-29
Can you attach the values in a .mat ?
rupa battula
2020-1-30
Walter Roberson
2020-1-30
Please show the output of whos for all of the variables.
KSSV
2020-1-30
If you cant post your work, you ashould not ask for help in open forums. You will get help on showing your problem; else how do you expect to get a help?
rupa battula
2020-1-30
采纳的回答
更多回答(1 个)
KSSV
2020-1-30
Your data is fine.....there are no missing values....you may try this:
surf(x,y,Z)
colorbar
grid off
shading interp
3 个评论
Walter Roberson
2020-1-30
I do not see any problem on my system.
I would tend to suggest (personal preference)
surf(x, y, Z, 'edgecolor', 'none')
colorbar
I would leave grid on.
You might be having a graphics driver glitch. Try
set(gcf, 'Renderer', 'Painters')
and look at the date of the driver that shows up in
opengl info
and update graphics drivers if you are not fairly current.
rupa battula
2020-1-31
Walter Roberson
2020-1-31
What was the solution?
类别
在 帮助中心 和 File Exchange 中查找有关 2-D and 3-D Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!