forked from openep/openep-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgetNumPts.m
More file actions
28 lines (26 loc) · 781 Bytes
/
Copy pathgetNumPts.m
File metadata and controls
28 lines (26 loc) · 781 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
function numpts = getNumPts( userdata )
% GETNUMPTS Returns the number of mapping points in the OpenEP dataset
%
% Usage:
% numpts = getNumPts( userdata )
% Where:
% userdata - see importcarto_mem
% numpts - the number of mapping points
%
% GETNUMPTS Returns the number of mapping points in the OpenEP datasest
%
% Author: Steven Williams (2020) (Copyright)
% SPDX-License-Identifier: Apache-2.0
%
% Modifications -
%
% Info on Code Testing:
% ---------------------------------------------------------------
% test code
% ---------------------------------------------------------------
%
% ---------------------------------------------------------------
% code
% ---------------------------------------------------------------
numpts = numel(userdata.electric.names);
end