-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgplotmatrixg.m
580 lines (530 loc) · 18.7 KB
/
gplotmatrixg.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
function [h,ax,BigAx] = gplotmatrixg(varargin)
%GPLOTMATRIXG Scatter plot matrix with grouping variable.
% GPLOTMATRIXG(X,Y,G) creates a matrix of scatter plots of the columns of
% X against the columns of Y, grouped by G. If X is P-by-M and Y is
% P-by-N, GPLOTMATRIXG will produce a N-by-M matrix of axes. If you omit
% Y or specify it as [], the function graphs X vs. X. G is a grouping
% variable that determines the marker and color assigned to each point in
% each matrix, and it can be a categorical variable, vector, string
% array, string matrix, or cell array of strings. Alternatively G can be
% a cell array of grouping variables (such as {G1 G2 G3}) to group the
% values in X by each unique combination of grouping variable values.
%
% Use the data cursor to read precise values from the plot, as well as
% the observation number and the values of related variables.
%
% GPLOTMATRIXG(X,Y,G,CLR,SYM,SIZ) specifies the colors, markers, and size
% to use. CLR is a string of color specifications, and SYM is a string
% of marker specifications. Type "help plot" for more information. For
% example, if SYM='o+x', the first group will be plotted with a circle,
% the second with plus, and the third with x. SIZ is a marker size to use
% for all plots. By default, the colors are 'bgrcmyk', the marker is
% '.', and the marker size depends on the number of plots and the size of
% the figure window.
%
% GPLOTMATRIXG(X,Y,G,CLR,SYM,SIZ,DOLEG) lets you control whether legends
% are created. Set DOLEG to 'on' (default) or 'off'.
%
% GPLOTMATRIXG(X,Y,G,CLR,SYM,SIZ,DOLEG,DISPOPT) lets you control how to
% fill the diagonals in a plot of X vs. X. Set DISPOPT to 'none' to
% leave them blank, 'hist' to plot histograms of all data points,
% 'stairs'(default if there is more than one group) to display the
% outlines of grouped histograms, 'grpbars' to plot grouped histogram
% bars, or 'variable' to write the variable names.
%
% GPLOTMATRIXG(X,Y,G,CLR,SYM,SIZ,DOLEG,DISPOPT,XNAM,YNAM) specifies XNAM
% and YNAM as the names of the X and Y variables. Each must be a
% character array, string array or cell array of strings of the
% appropriate dimension.
%
% GPLOTMATRIXG(PARENT,...) plots into the parent specified as either a
% figure or a uipanel.
%
% [H,AX,BigAx] = GPLOTMATRIXG(...) returns an array of handles H to the
% plotted points; a matrix AX of handles to the individual subaxes; and a
% handle BIGAX to big (invisible) axes framing the subaxes. The third
% dimension of H corresponds to groups in G. If DISPOPT is 'hist',
% 'stairs' or 'grpbars', AX contains one extra row of handles to
% invisible axes in which the histograms are plotted. BigAx is left as
% the CurrentAxes so that a subsequent TITLE, XLABEL, or YLABEL will be
% centered with respect to the matrix of axes.
%
% Example:
% load carsmall; X =
% [MPG,Acceleration,Displacement,Weight,Horsepower]; varNames = {'MPG'
% 'Acceleration' 'Displacement' 'Weight' 'Horsepower'};
% gplotmatrix(X,[],Cylinders,'bgrcm',[],[],'on','hist',varNames);
%
% See also GRPSTATS, GSCATTER, PLOTMATRIX.
%
% Copyright 1993-2017 The MathWorks, Inc.
%
% Original corrplot function modified by:
% Rene Labounek, PhD and Igor Nestrasil, MD, PhD
% Division of Clinical Behavioral Neuroscience, Department of Pediatrics, University of Minnesota
% Minneapolis, MN, USA
% contact emails: rene.labounek@gmail.com, rlaboune@umn.edu
% Last edits: 7th February 2020
narginchk(1,11);
nin = nargin;
if nin > 2
[varargin{:}] = convertStringsToChars(varargin{:});
end
% Allow uipanel/figure input as the first argument (parent)
if(isa(varargin{1},'matlab.ui.Figure') ||...
isa(varargin{1},'matlab.ui.container.Panel'))
parent = varargin{1};
varargin = varargin(2:end);
nin = nin-1;
else
% Check if a figure exists to be plot into, or create one
parent = ancestor(gca,'figure');
end
% Use inputParser to parse inputs
iP = inputParser;
addOptional(iP,'x',[],@(x) isnumeric(x)||isdatetime(x)||isduration(x));
addOptional(iP,'y',[],@(x) isnumeric(x)||isdatetime(x)||isduration(x));
addOptional(iP,'g',[],@(x) iscategorical(x)||isnumeric(x)||iscell(x));
addOptional(iP,'clr',[],@(x) ischar(x)||isnumeric(x)||iscell(x));
addOptional(iP,'symb',[],@(x) ischar(x)||isnumeric(x)||iscell(x));
addOptional(iP,'siz',[],@isnumeric);
addOptional(iP,'doleg',[],@(x) ischar(x)||isnumeric(x) ||islogical(x));
addOptional(iP,'dispopt',[],@(x) ischar(x)||isnumeric(x));
addOptional(iP,'xnam',[],@(x) ischar(x)||isnumeric(x)||iscell(x));
addOptional(iP,'ynam',[],@(x) ischar(x)||isnumeric(x)||iscell(x));
parse(iP,varargin{:});
% Assign parsed inputs
x = iP.Results.x;
y = iP.Results.y;
g = iP.Results.g;
clr = iP.Results.clr;
sym = iP.Results.symb;
siz = iP.Results.siz;
doleg = iP.Results.doleg;
dispopt = iP.Results.dispopt;
xnam = iP.Results.xnam;
ynam = iP.Results.ynam;
if (nin < 2), y = []; end
if isempty(y) % gplotmatrix(x)
rows = size(x,2); cols = rows;
y = x;
XvsX = true;
else % gplotmatrix(x,y)
rows = size(y,2); cols = size(x,2);
XvsX = false;
end
if (nin > 2) && ~isempty(g)
if iscategorical(g)
g = removecats(g);
end
% [g,gn] = mgrp2idx(g,size(x,1),',');
gn = [];
g = double(g);
ng = max(g);
else
% Set g to be a vector of ones instead of empty so that datatip callback
% can index into it
g = ones(size(x,1),1);
gn = [];
ng = 1;
end
% Default colors, markers, etc.
if (nin < 4) || isempty(clr), clr = 'bgrcmyk'; end
if isnumeric(clr) && isrow(clr)
if length(clr) == 3
% if it is a row vector, replicate it to a 2-row matrix and pass to
% internal.stats.cycleLineProperties
clr = [clr;clr];
else
error(message('stats:internal:colorStringToRGB:ValueMustBe3ElementVector'));
end
end
clr = internal.stats.cycleLineProperties(ng,clr);
clr = internal.stats.colorStringToRGB(clr);
if (nin < 5) || isempty(sym), sym = '.'; end
if (nin < 6), siz = []; end
if (nin < 7) || isempty(doleg), doleg = 'on'; end
if (nin < 8) || isempty(dispopt)
if ng > 1
dispopt = 's';
else
dispopt = 'g';
end
end
if (nin < 9) || isempty(xnam)
xnam = {};
else
if ischar(xnam) && (size(xnam,1)==cols)
xnam = cellstr(xnam);
elseif iscellstr(xnam) && (numel(xnam)==cols)
% ok
else
error(message('stats:gplotmatrix:XnamSizeMismatch'));
end
end
if (XvsX)
ynam = xnam;
elseif (nin < 10) || isempty(ynam)
ynam = {};
else
if ischar(ynam) && (size(ynam,1)==rows)
ynam = cellstr(ynam);
elseif iscellstr(ynam) && (numel(ynam)==rows)
% ok
else
error(message('stats:gplotmatrix:YnamSizeMismatch'));
end
end
dispopt = internal.stats.getParamVal(dispopt,{'hist','stairs','grpbars','variable','none'},'DISPOPT');
% What should go into the plot matrix?
doleg = internal.stats.parseOnOff(doleg,'''Legend''');
doleg = (doleg==1) && (~XvsX || (rows>1)) && ~isempty(gn);
dohist = XvsX && (dispopt(1)=='h');
doghistBar = (XvsX && (dispopt(1)=='g'));
doghistStair = (XvsX && (dispopt(1)=='s'));
donames = (XvsX && (dispopt(1)=='v'));
% Don't plot anything if either x or y is empty
if isempty(rows) || isempty(cols)
if nargout>0, h = []; ax = []; BigAx = []; end
return
end
if ~ismatrix(x) || ~ismatrix(y)
error(message('stats:gplotmatrix:MatrixRequired'));
end
if size(x,1)~=size(y,1)
error(message('stats:gplotmatrix:XYSizeMismatch'));
end
if (~isempty(g)) && (length(g) ~= size(x,1))
error(message('stats:gplotmatrix:XGSizeMismatch'));
end
% Create/find BigAx and make it invisible
if(isa(parent,'matlab.ui.Figure'))
clf;
BigAx = newplot;
else % Parent is a uipanel
% To maintain the behavior for figures: Delete all children of panel
% and create a new axes
delete(parent.Children);
BigAx = axes;
end
hold_state = ishold;
set(BigAx,'Visible','off','color','none','Parent',parent)
if (isempty(siz))
siz = repmat(get(0,'defaultlinemarkersize'), size(sym));
if any(sym=='.')
units = get(BigAx,'units');
set(BigAx,'units','pixels');
pos = get(BigAx,'Position');
set(BigAx,'units',units);
siz(sym=='.') = max(1,min(15, ...
round(15*min(pos(3:4))/size(x,1)/max(rows,cols))));
end
end
% Store global data for datatips into BixAx
ginds = cell(1,ng);
for i=1:ng
ginds{i} = find(g==i);
end
setappdata(BigAx,'ginds',ginds);
setappdata(BigAx,'xnam',xnam);
setappdata(BigAx,'ynam',ynam);
setappdata(BigAx,'x',x);
setappdata(BigAx,'y',y);
setappdata(BigAx,'XvsX',XvsX);
setappdata(BigAx,'gn',gn);
% Make datatips show up in front of axes
dcm_obj = datacursormode(ancestor(BigAx,'figure'));
dataCursorBehaviorObj = hgbehaviorfactory('DataCursor');
set(dataCursorBehaviorObj,'UpdateFcn',@gplotmatrixDatatipCallback);
% Create and plot into axes
ax2filled = false(max(rows,cols),1);
pos = get(BigAx,'Position');
width = pos(3)/cols;
height = pos(4)/rows;
space = .02; % 2 percent space between axes
pos(1:2) = pos(1:2) + space*[width height];
[m,n,k] = size(y); %#ok<ASGLU>
xlim = repmat(cat(3,min(x,[],1),max(x,[],1)),[rows 1 1]);
ylim = repmat(cat(3,min(y,[],1)',max(y,[],1)'),[1 cols 1]);
for i=rows:-1:1
for j=1:1:cols
axPos = [pos(1)+(j-1)*width pos(2)+(rows-i)*height ...
width*(1-space) height*(1-space)];
ax(i,j) = axes('Position',axPos, 'visible', 'on', 'Box','on','Parent',parent);
if ((i==j) && XvsX)
if (dohist||doghistBar||doghistStair)
histax = axes('Position',axPos,'Parent',parent);
ax2(j) = histax;
ax2filled(j) = true;
if dohist
% hhdiag(i,1) = histogram(reshape(y(:,i,:),[m k]),'BinMethod','scott','DisplayStyle','bar','Norm','pdf');
hhdiag(i,1) = histogram(reshape(y(:,i,:),[m k]),10,'DisplayStyle','bar','Norm','pdf');
if ng == 1
set(hhdiag(i),'FaceColor',clr(1,:));
end
elseif doghistBar
hhdiag(i,:) = internal.stats.plotGroupedHist(reshape(y(:,i,:),[m k]),g,'Color',clr,'DisplayStyle','bar','Norm','pdf');
elseif doghistStair
hhdiag(i,:) = internal.stats.plotGroupedHist(reshape(y(:,i,:),[m k]),g,'Color',clr,'DisplayStyle','stairs','Norm','pdf');
end
set(histax, 'YAxisLocation', 'right', ...
'Visible','off', 'XTick',[], 'YTick',[], ...
'XGrid','off', 'YGrid','off', ...
'XTickLabel','', 'YTickLabel','');
axis tight;
xlim(i,j,:) = get(gca,'xlim');
set(histax, 'ylim', get(histax,'ylim').*[1 1.05]);
end
else
hhij = iscatter(reshape(x(:,j,:),[m k]), ...
reshape(y(:,i,:),[m k]), ...
g, clr, sym, siz);
hh(i,j,1:length(hhij)) = hhij;
axis tight;
ylim(i,j,:) = get(gca,'ylim');
xlim(i,j,:) = get(gca,'xlim');
% Store information for gname
set(gca, 'UserData', {'gscatter' x(:,j,:) y(:,i,:) g});
% Attach data cursor
for q=1:ng
hgaddbehavior(hh(i,j,q),dataCursorBehaviorObj);
setappdata(hh(i,j,q),'dtcallbackdata',{BigAx,q,i,j});
end
end
set(ax(i,j),'xlimmode','auto', 'ylimmode','auto', ...
'xgrid','off', 'ygrid','off')
end
end
% Fill in histogram handles
if XvsX && (dohist || doghistBar || doghistStair)
for i=1:rows
hh(i,i,:) = hhdiag(i,:);
end
end
xlimmin = min(xlim(:,:,1),[],1); xlimmax = max(xlim(:,:,2),[],1);
ylimmin = min(ylim(:,:,1),[],2); ylimmax = max(ylim(:,:,2),[],2);
% Set all the limits of a row or column to be the same and leave just a 5%
% gap between data and axes.
inset = .05;
for i=1:rows
set(ax(i,1),'ylim',[ylimmin(i,1) ylimmax(i,1)])
dy = diff(get(ax(i,1),'ylim'))*inset;
set(ax(i,:),'ylim',[ylimmin(i,1)-dy ylimmax(i,1)+dy])
end
for j=1:cols
set(ax(1,j),'xlim',[xlimmin(1,j) xlimmax(1,j)])
dx = diff(get(ax(1,j),'xlim'))*inset;
set(ax(:,j),'xlim',[xlimmin(1,j)-dx xlimmax(1,j)+dx])
if ax2filled(j)
set(ax2(j),'xlim',[xlimmin(1,j)-dx xlimmax(1,j)+dx])
end
end
% Label plots one way or the other
if (donames && ~isempty(xnam))
for j=1:cols
set(gcf,'CurrentAx',ax(j,j));
h = text(0.5,0.5, -.1,...
xnam{j},'HorizontalAlignment','center',...
'VerticalAlignment','middle','Units','normalized');
end
else
if ~isempty(xnam)
for j=1:cols, xlabel(ax(rows,j),xnam{j}); end
end
if ~isempty(ynam)
for i=1:rows, ylabel(ax(i,1),ynam{i}); end
end
end
% Ticks and labels on outer plots only
set(ax(1:rows-1,:),'xticklabel','')
set(ax(:,2:cols),'yticklabel','')
set(BigAx,'userdata',ax,'tag','PlotMatrixBigAx');
% Set XTick and YTick only if data is numeric, this is automatically set
% for datetime arrays afterwards
if(isnumeric(get(ax(rows,1),'xtick')))
set(BigAx,'XTick',get(ax(rows,1),'xtick'));
end
if(isnumeric(get(ax(rows,1),'ytick')))
set(BigAx,'YTick',get(ax(rows,1),'ytick'));
end
% Create legend if requested; base it on the top right plot
if (doleg)
gn = gn(ismember(1:size(gn,1),g),:);
legend(ax(1,cols),gn);
end
% Make BigAx the CurrentAxes
set(gcf,'CurrentAx',BigAx)
if ~hold_state
set(gcf,'NextPlot','replace')
end
% Also set Title and X/YLabel visibility to on and strings to empty
set([get(BigAx,'Title'); get(BigAx,'XLabel'); get(BigAx,'YLabel')], ...
'String','','Visible','on')
for i=1:cols
axToBeLinked = ax(:,i);
hz = zoom;
if any(ax2filled)
hlinkx(i) = linkprop([axToBeLinked;ax2(i)],{'XLim','XScale'});
setAxesZoomMotion(hz,ax2(i),'horizontal');
else
hlinkx(i) = linkprop(axToBeLinked,{'XLim','XScale'});
end
end
for j=1:rows
axToBeLinked = ax(j,:);
hlinky(j) = linkprop(axToBeLinked,{'YLim','YScale'});
end
setappdata(BigAx,'LinkPropXLim',hlinkx);
setappdata(BigAx,'LinkPropYLim',hlinky);
gplotmatrixLabelCallback()
set(gcf,'SizeChanged',@gplotmatrixLabelCallback);
hp = pan;
set(hp,'ActionPreCallback',@gplotmatrixSizeChangedCallback);
set(hz,'ActionPostCallback',@gplotmatrixLabelCallback);
set(hp,'ActionPostCallback',@gplotmatrixLabelCallback);
if nargout~=0
h = hh;
if any(ax2filled)
ax = [ax; ax2(:)'];
end
end
% -----------------------------
function datatipTxt = gplotmatrixDatatipCallback(obj,evt)
target = get(evt,'Target');
ind = get(evt,'DataIndex');
pos = get(evt,'Position');
dtcallbackdata = getappdata(target,'dtcallbackdata');
[BigAx,gnum,row,col] = dtcallbackdata{:};
ginds = getappdata(BigAx,'ginds');
xnam = getappdata(BigAx,'xnam');
ynam = getappdata(BigAx,'ynam');
xdat = getappdata(BigAx,'x');
ydat = getappdata(BigAx,'y');
XvsX = getappdata(BigAx,'XvsX');
gn = getappdata(BigAx,'gn');
% If NumGroups(gn) is empty, set them as {1}, to be indexed into later
if isempty(gn)
gn = {1};
end
gind = ginds{gnum};
obsind = gind(ind);
xvals = xdat(obsind,:);
yvals = ydat(obsind,:);
x = xvals(col);
y = yvals(row);
[xNum,yNum] = matlab.graphics.internal.makeNumeric(obj,x,y);
if xNum~=pos(1) || yNum~=pos(2)
% Something is inconsistent, display default datatip.
datatipTxt = {sprintf('X: %s',convertToString(pos(1))),sprintf('Y: %s',convertToString(pos(2)))};
else
if isempty(xnam)
xnam = cell(size(xdat,2),1);
for i = 1:size(xdat,2)
xnam{i} = getString(message('stats:gplotmatrix:VarLabelXvar',convertToString(i)));
end
end
if isempty(ynam)
ynam = cell(size(ydat,2),1);
for i = 1:size(ydat,2)
ynam{i} = getString(message('stats:gplotmatrix:VarLabelYvar',convertToString(i)));
end
end
% Generate datatip text.
datatipTxt = {
[xnam{col},': ',convertToString(x)],...
[ynam{row},': ',convertToString(y)],...
'',...
getString(message('stats:gplotmatrix:LabelObservation',convertToString(obsind))),...
};
if ~isempty(gn)
datatipTxt{end+1} = getString(message('stats:gplotmatrix:LabelGroup', gn{gnum}));
end
datatipTxt{end+1} = '';
xnamTxt = cell(length(xvals),1);
for i=1:length(xvals)
xnamTxt{i} = [xnam{i} ': ' convertToString(xvals(i))];
end
datatipTxt = {datatipTxt{:}, xnamTxt{:}};
if ~XvsX
ynamTxt = cell(length(yvals),1);
for i=1:length(yvals)
ynamTxt{i} = [ynam{i} ': ' convertToString(yvals(i))];
end
datatipTxt = {datatipTxt{:}, ynamTxt{:}};
end
end
end
% -----------------------------
function gplotmatrixLabelCallback(~,~)
if ~all(isgraphics(ax(:)))
return;
end
% Check for whether the figure may have been loaded from a file without
% callbacks. If so, restore them here.
if ~isempty(gcbf)
% Make sure hz1 and ax2 have same figure parent. If axes are filled
% then fig is ancestor of axes, else fig is either gcbf or gcf.
if any(ax2filled)
ax2fill = ax2(ax2filled);
fig = ancestor(ax2fill(1),'figure');
elseif isempty(get(groot,'CurrentFigure')) || get(groot,'CurrentFigure') == gcbf
fig = gcbf;
else
fig = get(groot,'CurrentFigure');
end
hp1 = pan(fig);
if isempty(get(hp1,'ActionPreCallback'))
hz1 = zoom(fig);
set(hp1,'ActionPreCallback',@gplotmatrixSizeChangedCallback);
set(hz1,'ActionPostCallback',@gplotmatrixLabelCallback);
set(hp1,'ActionPostCallback',@gplotmatrixLabelCallback);
if any(ax2filled)
setAxesZoomMotion(hz1,ax2,'horizontal');
end
end
end
set(ax(1:rows,1),'YTickLabelMode','auto');
set(ax(rows,1:cols),'XTickLabelMode','auto');
if rows>=2
for ii = 1:rows
rangeY = diff(ax(ii,1).YLim);
if ax(ii,1).YTick(1)- ax(ii,1).YLim(1) < rangeY*0.05 && ii~=rows
ax(ii,1).YTickLabel{1} = '';
end
if ax(ii,1).YLim(2)- ax(ii,1).YTick(end)< rangeY*0.05 && ii~=1
ax(ii,1).YTickLabel{end} = '';
end
end
for jj = 1:cols
htx1 = text(0,0,ax(rows,jj).XTickLabel(1),'Units','characters','Parent',ax(rows,jj));
dx1 = htx1.Extent(3);
delete(htx1);
htx2 = text(0,0,ax(rows,jj).XTickLabel(end),'Units','characters','Parent',ax(rows,jj));
dx2 = htx2.Extent(3);
delete(htx2);
rangeX = diff(ax(rows,jj).XLim);
if ax(rows,jj).XTick(1) - ax(rows,jj).XLim(1)< rangeX*dx1*0.02 && jj~=1
ax(rows,jj).XTickLabel{1} = '';
end
if ax(rows,jj).XLim(2)- ax(rows,jj).XTick(end)< rangeX*dx2*0.02 && jj~=cols
ax(rows,jj).XTickLabel{end} = '';
end
end
end
end
% -----------------------------
function gplotmatrixSizeChangedCallback(~,~)
if ~all(isgraphics(ax(:)))
return;
end
set(ax(1:rows,1),'YTickLabelMode','auto');
set(ax(rows,1:cols),'XTickLabelMode','auto');
end
end
function str = convertToString(val)
if(isnumeric(val))
str = num2str(val);
else
str = char(string(val));
end
end