How to draw lines on a slice graphic?

2 ビュー (過去 30 日間)
Eric Daiber
Eric Daiber 2017 年 8 月 9 日
回答済み: Star Strider 2017 年 8 月 9 日
Hello all, I am attempting to draw lines on a graphic created by slice. I can get the slice function to work perfectly and the line function (line(x,y,z)) separately but not together. Where K_final is a spatially dependent variable in 3D (x,y,z,K).
Thanks, Eric
hold on % for CP1 x-axis image v = log(K_final); xslice = [75]; %cells yslice = []; zslice = []; h = slice(v,xslice,yslice,zslice); colormap hot; grid off ; xlabel 'x-axis (cells)'; ylabel 'y-axis (cells)'; zlabel 'z-axis (cells)'; set(h,'edgecolor','none'); colorbar; caxis([-9 15]); set(gca, 'view', [270 0]);%looking downgradiant ylim([202 298])
l = [286 286] v = [75 75] g = [1 24] line(l,v,g,'Color', 'k', 'Linestyle', ':','linewidth', 2)

採用された回答

Star Strider
Star Strider 2017 年 8 月 9 日
For lines in 3D plots, see if the plot3 (link) function will do what you want:
plot3(l,v,g,'Color', 'k', 'Linestyle', ':','linewidth', 2)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRed についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by