Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
plotID_matlab
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
plotID
plotID_matlab
Commits
a20935ea
Commit
a20935ea
authored
3 years ago
by
Lemmer, Jan
Browse files
Options
Downloads
Patches
Plain Diff
Correct Typos
parent
3ffb060d
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!43
Implements #73, cleans up example file,
,
!33
Resolve "Admin-Berechtigung für Initialisation"
Pipeline
#591959
failed
3 years ago
Stage: Run
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
+PlotID/@config/wizard.m
+1
-1
1 addition, 1 deletion
+PlotID/@config/wizard.m
Initialisation.m
+1
-11
1 addition, 11 deletions
Initialisation.m
with
2 additions
and
12 deletions
+PlotID/@config/wizard.m
+
1
−
1
View file @
a20935ea
...
...
@@ -27,7 +27,7 @@ function usrTxt = inputRequired(msg)
%Input Dialog that repeats if left empty
inputRequired
=
true
;
while
inputRequired
prompt
=
[
'Please enter '
,
msg
,
':'
];
prompt
=
[
'Please enter '
,
msg
,
':
'
];
inpt
=
input
(
prompt
,
's'
);
if
isempty
(
inpt
)
disp
(
'Input must not be empty!'
);
...
...
This diff is collapsed.
Click to expand it.
Initialisation.m
+
1
−
11
View file @
a20935ea
%% This is the PlotID Initialisation file
% Please run this script before using PlotID
%% Step 1: Add plotID location to you MATLAB path via startup.m
% Change the current folder to the folder of this m-file.
%% ToDO: Delete and add to readme
% plotIDpath = fileparts(which(mfilename));
% % Add PlotID path to your startup.m file
% fid = fopen(fullfile(userpath,'startup.m'),'a+');
% cmdStr = ['addpath(''', plotIDpath,''');'];
% fprintf(fid,'%s\n', cmdStr);
% fclose(fid);
%% Section 2 Config File
%% Section 1 Config File
% To make things easy, you should use the config file. The following wizard
% will help you create one:
writeConfig
=
true
;
...
...
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