-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMASS.m
More file actions
36 lines (27 loc) · 819 Bytes
/
MASS.m
File metadata and controls
36 lines (27 loc) · 819 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
classdef MASS < PARTIAL_SD_TERM
properties
end
methods
function m = MASS(g_,LHS_mass_g_,dat_,dV_)
g = @(x,p,t,dat) x.*0+1;
if exist('g_','var')
if ~isempty(g_)
g = g_;
end
end
LHS_mass_g = @(x,p,t,dat) x.*0+1;
if exist('LHS_mass_g_','var')
if ~isempty(LHS_mass_g_)
LHS_mass_g = LHS_mass_g_;
end
end
if nargin<3
dat_ = [];
end
if nargin<4
dV_ = @(x,p,t,dat) x.*0+1;
end
m@PARTIAL_SD_TERM('mass',g,LHS_mass_g,dat_,dV_);
end
end
end