Skip to content
Snippets Groups Projects
Select Git revision
  • 791c81c95cf9a9fc715384082b7478881b7f2727
  • master default protected
  • develop
  • timing
  • feature/linux
  • feature/deviceName
  • feature/MatlabBackup
  • feature/MatlabWrapper
  • v2.02
  • v2.01
  • v2.0
  • Release_1.0
  • HIP_name_chnage
  • deletedOld
  • v1.0.2
  • PaperRelease
  • Release-0.0.6b
  • Release-0.0.5b
  • Release-0.0.4b
  • Release-0.0.3a
  • Release-0.0.2a
  • Release-0.0.1a
22 results

CheckConfig.m

Blame
  • CheckConfig.m 679 B
    function [hydraConfig] = CheckConfig(,suppressWarning)
         error('CheckConfig not yet implemented in MATLAB!'); %delete this line when implemented
         if (~exist('suppressWarning','var') || isempty(suppressWarning) || ~suppressWarning)
             warning('Falling back to matlab.');
         end
         
         if (~exist('numIterations','var') || isempty(numIterations))
             numIterations = 1;
         end
         
         arrayOut = arrayIn;
         for t=1:size(arrayIn,5)
             for c=1:size(arrayIn,4)
                 for i=1:numIterations
                     % implement this function here
                     arrayOut(:,:,:,c,t) = arrayIn(:,:,:,c,t);
                 end
             end
         end
    end