Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SCDDS-core
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SPC
SCDDS
SCDDS-core
Commits
df993d0d
Commit
df993d0d
authored
4 years ago
by
Federico Felici
Browse files
Options
Downloads
Patches
Plain Diff
Add comments
parent
ebdec22a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/classes/SCD.m
+11
-5
11 additions, 5 deletions
code/classes/SCD.m
with
11 additions
and
5 deletions
code/classes/SCD.m
+
11
−
5
View file @
df993d0d
classdef
SCD
classdef
SCD
% main interface class just to get expcode
% main interface class for interacting with SCD expcodes
% E = SCD.load(expcode);
%
% H = SCD.load(expcode); % loads the obj for a desired expcode
% H = SCD.init(expcode,shot); % does load, setup, callinits, actualize
%
% C = SCD.getexpcodecontainer; % get expcode container
properties
(
Access
=
private
)
properties
(
Access
=
private
)
E
% expcode
E
% expcode
SCDexps
% expcode code container
SCDexps
% expcode code container
...
@@ -15,15 +21,15 @@ classdef SCD
...
@@ -15,15 +21,15 @@ classdef SCD
end
end
function
H
=
init
(
expcode
,
shot
)
function
H
=
init
(
expcode
,
shot
)
assert
(
nargin
==
2
,
'must supply 2 inputs to init(expcode,shot)'
)
H
=
SCD
.
load
(
expcode
);
H
=
SCD
.
load
(
expcode
);
H
.
setup
;
H
.
setup
;
H
.
callinits
(
shot
)
;
H
.
callinits
;
H
.
actualize
(
shot
);
H
.
actualize
(
shot
);
end
end
function
help
()
function
help
()
SCDexps
=
SCD
.
getexpcodecontainer
();
help
(
mfilename
);
SCDexps
.
printexpcodes
;
end
end
function
list
()
function
list
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment