Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CRP Toolbox for MATLAB
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Norbert Marwan
CRP Toolbox for MATLAB
Commits
fe11066d
Commit
fe11066d
authored
1 year ago
by
Norbert Marwan
Browse files
Options
Downloads
Patches
Plain Diff
add linking between time series and CRP in the GUI for the JRP function
parent
3d87aef2
No related branches found
Branches containing commit
Tags
v5.27
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
Contents.m
+2
-2
2 additions, 2 deletions
Contents.m
crpclean.m
+1
-1
1 addition, 1 deletion
crpclean.m
makeinstall.rc
+1
-1
1 addition, 1 deletion
makeinstall.rc
makerelease.zsh
+3
-2
3 additions, 2 deletions
makerelease.zsh
private/create_JRPfig.m
+7
-1
7 additions, 1 deletion
private/create_JRPfig.m
with
14 additions
and
7 deletions
Contents.m
+
2
−
2
View file @
fe11066d
% CRP Toolbox
% Version 5.2
2
(R3
5
) 05-Jul-2023
% Version 5.2
6
(R3
6
) 05-Jul-2023
%
% ace - Finds optimal transformation and maximal correlation.
% adjust - Adjusts two two-column vectors.
...
...
@@ -69,4 +69,4 @@
% along with this program; if not, write to the Free Software
% Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
% Modified at 05-Jul-2023 18:
05:37
by MAKEINSTALL
% Modified at 05-Jul-2023 18:
28:40
by MAKEINSTALL
This diff is collapsed.
Click to expand it.
crpclean.m
+
1
−
1
View file @
fe11066d
...
...
@@ -16,7 +16,7 @@ function crpclean
% Norbert Marwan, Potsdam University, Germany
% http://www.agnld.uni-potsdam.de
%
% Generation date: 05-Jul-2023 18:
05:37
% Generation date: 05-Jul-2023 18:
28:40
% $Date$
% $Revision$
...
...
This diff is collapsed.
Click to expand it.
makeinstall.rc
+
1
−
1
View file @
fe11066d
...
...
@@ -12,7 +12,7 @@ src_dir='~/matlab/CRPtool'; % folder with the origin toolbox
version_file='git'; % include in this file a line like this: % Version: Number
version_number=''; % or put the version number in this variable
release='R3
5
'; % the release number
release='R3
7
'; % the release number
infostring='The printable manual is crp_man.pdf.'; % further information displayed during installation
xml_name='Cross Recurrence Plot Toolbox';
xml_demo='crp(sin(-4:.1:4),''dis'')';
...
...
This diff is collapsed.
Click to expand it.
makerelease.zsh
+
3
−
2
View file @
fe11066d
#!/bin/zsh
# Get a list of existing tags
tags
=
$(
git tag |
sort
-V
)
tags
=
$(
git tag |
sort
-V
|
tail
-n
3
)
previous_tag
=
v
4.0
previous_tag
=
v
5.25
# Loop through each tag and create a release
for
tag
in
${
=tags
}
;
do
...
...
@@ -13,6 +13,7 @@ for tag in ${=tags}; do
response
=
$(
curl
-s
--header
"PRIVATE-TOKEN:XwXxVgd_Aa7GKxPZ5fyx"
"https://gitlab.pik-potsdam.de/api/v4/projects/1583/releases/
$tag
"
)
if
[[
"
$response
"
!=
"{
\"
message
\"
:
\"
404 Not Found
\"
}"
]]
;
then
echo
"Release already exists for tag:
$tag
. Skipping..."
previous_tag
=
$tag
continue
fi
...
...
This diff is collapsed.
Click to expand it.
private/create_JRPfig.m
+
7
−
1
View file @
fe11066d
...
...
@@ -91,7 +91,13 @@ global props
'Position'
,[
.
1
.
12
.
8
.
8
*
17
/
23
]);
h1
=
imagesc
(
'Tag'
,
'CRPData'
,
'cdata'
,[]);
linkaxes
([
h1
h2
h_axes
],
'x'
)
if
verLessThan
(
'matlab'
,
'R2016b'
)
h1
=
imagesc
(
'Tag'
,
'CRPData'
,
'cdata'
,[]);
else
h1
=
imagesc
(
h_axes
,
'Tag'
,
'CRPData'
,
'cdata'
,[]);
end
h1
=
title
(
''
,
'units'
,
'normalized'
);
set
(
h1
,
props
.
titletext
)
h2
=
get
(
h1
,
'Position'
);
...
...
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