首頁 > 軟體

Matlab實現多子圖同步調整視角

2022-03-16 10:00:27

要解決的問題:我希望在旋轉其中一個AXES的視角的同時,其他AXES跟著以相同視角旋轉。

我曾經在出過一篇如何同步視角的文章,但是隻是講清楚了原理,並寫出了編寫方法,但每次要寫都要編寫程式碼屬實麻煩,因此,我將主要部分封裝成了函數,用的時候只需要在程式碼結尾加上一行參照一下函數就行!!

以下先講解函數咋用,在最後給出函數完整程式碼:

DEMO1 同時改變座標範圍和視角

直接在程式碼最後面參照一下工具函數,加入一行:

SCR()

在調整某一座標區域即可實現同時調整座標範圍和視角,範例程式碼如下:

% demo1.m
% @author: slandarer

[X,Y]=meshgrid(1:0.5:10,1:20);
Z=sin(X)+cos(Y);

% 座標區域1繪圖
subplot(1,2,1)
surf(X,Y,Z)
colormap(gca,summer)

% 座標區域2繪圖
subplot(1,2,2)
surf(X,Y,Z)
colormap(gca,winter)

% 應用座標區域同步旋轉函數
SCR()

DEMO2 只同時改變視角

因為有時候繪圖的座標範圍著實不一樣,想要只改變視角但是不改變座標範圍可以在最後加入:

SCR(‘ucLim’)

% demo2.m
% @author: slandarer

[X,Y]=meshgrid(1:0.5:10,1:20);
Z=sin(X)+cos(Y);

% 座標區域1繪圖
subplot(1,2,1)
surf(X,Y,Z)
colormap(gca,summer)

% 座標區域2繪圖
subplot(1,2,2)
surf(peaks)
colormap(gca,winter)

% 應用座標區域同步旋轉函數
% 只改變視角不改變軸範圍
SCR('ucLim')

DEMO3 更多子圖

不管多少子圖後面那一行照常加就完事,是不是嘎嘎好用:

% 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

% 應用座標區域同步旋轉函數
% 只改變視角不改變軸範圍
SCR('ucLim')

工具函數完整程式碼

function SCR(varargin)
%
% @author: slandarer
% @公眾號: slandarer隨筆
% @知乎  : hikari
% @CSDN  : slandarer
% 
% 期待您的關注!!!

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);  % 設定滑鼠按下回撥
set(fig,'WindowButtonUpFcn',@bt_up);      % 設定滑鼠鬆開回撥
set(fig,'WindowButtonMotionFcn',@bt_move);% 設定滑鼠移動回撥

function bt_down(~,~),isClicking=true;end % 滑鼠按下回撥
function bt_up(~,~),isClicking=false;end  % 滑鼠鬆開回撥
function bt_move(~,~)
    if isClicking
        tempAxes=fig.CurrentAxes; % 獲取當前點選的axes
        tempAxes.UserData;
        for ii=1:length(ch) % 兩個axes
            if ch(ii).UserData~=tempAxes.UserData
                ch(ii).View=tempAxes.View; % 讓其他axes與被點選axes有相同視角
                if ~uchangeLim
                    ch(ii).XLim=tempAxes.XLim; % 有相同X軸座標範圍
                    ch(ii).YLim=tempAxes.YLim; % 有相同Y軸座標範圍
                    ch(ii).ZLim=tempAxes.ZLim; % 有相同Z軸座標範圍
                end
            end
        end
    end
end
end

以上就是Matlab實現多子圖同步調整視角的詳細內容,更多關於Matlab多子圖調整視角的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com