-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblankInterrogator.m
More file actions
42 lines (35 loc) · 959 Bytes
/
blankInterrogator.m
File metadata and controls
42 lines (35 loc) · 959 Bytes
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
% blankInterrogator
%
% usage: blankInterrogator()
% by: ds / based on code by justin gardner
% date: 2007, 2020
% purpose: a blank interrogator function that shows
% function interface
%
% in: % NB input arguments are "fulfilled" when
% % clicked inside mrLoadRet window.
%
% v (view)
% overlayNum
% scan
% x,y,s (coordinates)
% roi (empty,
% or ROI details if clicked inside ROI)
%
function blankInterrogator(v, overlayNum, scan, x, y ,s ,roi)
% check arguments
if ~any(nargin == [1:7])
help blankInterrogator
return
end
% select the window to plot into
selectGraphWin;
global MLR;
fignum = MLR.graphFigure;
% turn off menu/title etc.
set(fignum,'NumberTitle','off');
set(fignum,'Name','blankInterrogator');
% ? get data from view
% ? do interesting maths, model fitting, ...
% ? do plotting / visualisation
end