Skip to content
Snippets Groups Projects
Commit d31b5074 authored by Olivier Sauter's avatar Olivier Sauter
Browse files

small fix for code.name

git-svn-id: https://spcsvn.epfl.ch/repos/TCV/gdat/trunk@11792 d63d8f72-b253-0410-a779-e742ad2e26cf
parent a8e76d47
No related branches found
No related tags found
No related merge requests found
...@@ -186,7 +186,11 @@ for it=1:length(ids_cores_profiles.time) ...@@ -186,7 +186,11 @@ for it=1:length(ids_cores_profiles.time)
.* dqdrhotor; .* dqdrhotor;
end end
ids_cores_profiles.code.name = ['tcv_get_ids_core_profiles, within gdat, with shot= ' num2str(shot) '; varargin' varargin{:}]; if nargin <= 2
ids_cores_profiles.code.name = ['tcv_get_ids_core_profiles, within gdat, with shot= ' num2str(shot) ];
else
ids_cores_profiles.code.name = ['tcv_get_ids_core_profiles, within gdat, with shot= ' num2str(shot) '; varargin: ' varargin{:}];
end
ids_cores_profiles.code.output_flag = zeros(size(ids_cores_profiles.time)); ids_cores_profiles.code.output_flag = zeros(size(ids_cores_profiles.time));
% make arrays not filled in empty: % make arrays not filled in empty:
......
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