您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“Matlab如何實(shí)現(xiàn)多子圖同步調(diào)整視角”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Matlab如何實(shí)現(xiàn)多子圖同步調(diào)整視角”吧!
要解決的問題:我希望在旋轉(zhuǎn)其中一個AXES的視角的同時,其他AXES跟著以相同視角旋轉(zhuǎn)。
以下先講解函數(shù)咋用,在最后給出函數(shù)完整代碼:
直接在代碼最后面引用一下工具函數(shù),加入一行:
SCR()
在調(diào)整某一坐標(biāo)區(qū)域即可實(shí)現(xiàn)同時調(diào)整坐標(biāo)范圍和視角,實(shí)例代碼如下:
% demo1.m % @author: slandarer [X,Y]=meshgrid(1:0.5:10,1:20); Z=sin(X)+cos(Y); % 坐標(biāo)區(qū)域1繪圖 subplot(1,2,1) surf(X,Y,Z) colormap(gca,summer) % 坐標(biāo)區(qū)域2繪圖 subplot(1,2,2) surf(X,Y,Z) colormap(gca,winter) % 應(yīng)用坐標(biāo)區(qū)域同步旋轉(zhuǎn)函數(shù) SCR()
因?yàn)橛袝r候繪圖的坐標(biāo)范圍著實(shí)不一樣,想要只改變視角但是不改變坐標(biāo)范圍可以在最后加入:
SCR(‘ucLim’)
% demo2.m % @author: slandarer [X,Y]=meshgrid(1:0.5:10,1:20); Z=sin(X)+cos(Y); % 坐標(biāo)區(qū)域1繪圖 subplot(1,2,1) surf(X,Y,Z) colormap(gca,summer) % 坐標(biāo)區(qū)域2繪圖 subplot(1,2,2) surf(peaks) colormap(gca,winter) % 應(yīng)用坐標(biāo)區(qū)域同步旋轉(zhuǎn)函數(shù) % 只改變視角不改變軸范圍 SCR('ucLim')
不管多少子圖后面那一行照常加就完事,是不是嘎嘎好用:
% demo3.m % @author: slandarer % 繪制6個圖 M=2; N=3; for m=1:M for n=1:N subplot(M,N,n+(m-1)*N) hold on;grid on scatter3(rand([5,1]),rand([5,1]),rand([5,1]),'filled') end end % 應(yīng)用坐標(biāo)區(qū)域同步旋轉(zhuǎn)函數(shù) % 只改變視角不改變軸范圍 SCR('ucLim')
function SCR(varargin) % % @author: slandarer % @公眾號: slandarer隨筆 % @知乎 : hikari % @CSDN : slandarer % % 期待您的關(guān)注!!! help SCR % 若不希望輸出[作者信息],請刪除這行 uchangeLim=false; if nargin>0 if ischar(varargin{1})&&strcmp(varargin{1},'ucLim') uchangeLim=true;fig=gcf; elseif strcmp(get(varargin{1},'type'),'figure' ) fig=varargin{1}; end else fig=gcf; end if nargin>1&&ischar(varargin{1})&&strcmp(varargin{1},'ucLim') uchangeLim=true; end % 為axes編號 ch=fig.Children; for i=1:length(ch) ch(i).UserData=i; end fig.CurrentAxes=ch(end); isClicking=false; set(fig,'WindowButtonDownFcn',@bt_down); % 設(shè)置鼠標(biāo)按下回調(diào) set(fig,'WindowButtonUpFcn',@bt_up); % 設(shè)置鼠標(biāo)松開回調(diào) set(fig,'WindowButtonMotionFcn',@bt_move);% 設(shè)置鼠標(biāo)移動回調(diào) function bt_down(~,~),isClicking=true;end % 鼠標(biāo)按下回調(diào) function bt_up(~,~),isClicking=false;end % 鼠標(biāo)松開回調(diào) function bt_move(~,~) if isClicking tempAxes=fig.CurrentAxes; % 獲取當(dāng)前點(diǎn)擊的axes tempAxes.UserData; for ii=1:length(ch) % 兩個axes if ch(ii).UserData~=tempAxes.UserData ch(ii).View=tempAxes.View; % 讓其他axes與被點(diǎn)擊axes有相同視角 if ~uchangeLim ch(ii).XLim=tempAxes.XLim; % 有相同X軸坐標(biāo)范圍 ch(ii).YLim=tempAxes.YLim; % 有相同Y軸坐標(biāo)范圍 ch(ii).ZLim=tempAxes.ZLim; % 有相同Z軸坐標(biāo)范圍 end end end end end end
到此,相信大家對“Matlab如何實(shí)現(xiàn)多子圖同步調(diào)整視角”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。