Skip to content
Snippets Groups Projects
Commit fe11066d authored by Norbert Marwan's avatar Norbert Marwan
Browse files

add linking between time series and CRP in the GUI for the JRP function

parent 3d87aef2
No related branches found
Tags v5.27
No related merge requests found
% CRP Toolbox
% Version 5.22 (R35) 05-Jul-2023
% Version 5.26 (R36) 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
......@@ -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$
......
......@@ -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='R35'; % the release number
release='R37'; % 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'')';
......
#!/bin/zsh
# Get a list of existing tags
tags=$(git tag | sort -V)
tags=$(git tag | sort -V| tail -n 3)
previous_tag=v4.0
previous_tag=v5.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
......
......@@ -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');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment