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
ad0c2c32
Commit
ad0c2c32
authored
5 years ago
by
Federico Felici
Browse files
Options
Downloads
Patches
Plain Diff
Add top-level interfacing class
parent
032167c3
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
code/classes/SCD.m
+29
-0
29 additions, 0 deletions
code/classes/SCD.m
with
29 additions
and
0 deletions
code/classes/SCD.m
0 → 100644
+
29
−
0
View file @
ad0c2c32
classdef
SCD
% main interface class just to get expcode
% E = SCD.load(expcode);
properties
(
Access
=
private
)
E
% expcode
SCDexps
% expcode code container
end
methods
(
Static
)
function
E
=
load
(
expcode
)
% Creating the experimental code container class
SCDexps
=
SCD
.
getexpcodecontainer
();
E
=
SCDexps
.
getbymaincode
(
expcode
);
end
function
help
()
SCDexps
=
SCD
.
getexpcodecontainer
();
SCDexps
.
printexpcodes
;
end
function
list
()
SCD
.
help
;
end
function
SCDexps
=
getexpcodecontainer
()
SCDexps
=
SCDconf_createexpcodes
;
end
end
end
\ No newline at end of file
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