-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplotAblationArea.m
More file actions
31 lines (29 loc) · 910 Bytes
/
plotAblationArea.m
File metadata and controls
31 lines (29 loc) · 910 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
function plotAblationArea(userdata)
% PLOTABLATIONAREA Adds the ablation area to the current figure
%
% Usage:
% plotAblationArea(userdata)
% Where:
% userdata - see importcarto_mem.m
%
% PLOTABLATIONAREA Requires a userdata structure which contains `.rfindex` as
% its input, which can be created using `importvisitag.m`
%
% Author: Steven Williams (2020) (Copyright)
% SPDX-License-Identifier: Apache-2.0
%
% Modifications -
%
% Info on Code Testing:
% ---------------------------------------------------------------
% test code
% ---------------------------------------------------------------
%
% ---------------------------------------------------------------
% code
% ---------------------------------------------------------------
%
% See also, importvisitag.m, getAblationArea.m, plotVisitags.m
[~, ~, trAbl] = getAblationArea(userdata);
trisurf(trAbl, 'facecolor', 'y', 'edgecolor', 'none');
end