Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 76ef81a9 authored by DIB Elian's avatar DIB Elian
Browse files

Fixed obsolete function

parent 80f8d6ca
No related branches found
No related tags found
No related merge requests found
...@@ -40,6 +40,6 @@ if ~Copy ...@@ -40,6 +40,6 @@ if ~Copy
end end
%% Create super-ray set %% Create super-ray set
SRSet = SR.fromFields(SRVal,SRLab,SRPos,SRDisp,SRSize); SRSet = SR.FieldsToSet(SRVal,SRSize,SRPos,SRDisp,SRLab);
end end
\ No newline at end of file
...@@ -6,7 +6,7 @@ SRBSet = struct(SRRefSet); ...@@ -6,7 +6,7 @@ SRBSet = struct(SRRefSet);
SRRef = {SRRefSet.Value}; SRRef = {SRRefSet.Value};
[LFRef,SRMask] = SRtoLF(SRRef); [LFRef,SRMask] = SRtoLF(SRRef);
[LFB,LFC,LFU,LFS,LFV] = SR.factorizeLF(LFRef,varargin{:}); [LFB,LFC,LFU,LFS,LFV] = SR.factorize(LFRef,varargin{:});
SRB = LFtoSR(LFB,SRMask); SRB = LFtoSR(LFB,SRMask);
for lab=1:numel(SRRef) for lab=1:numel(SRRef)
......
...@@ -2,7 +2,7 @@ function [SRB,SRC,SRU,SRS,SRV] = factorizeSR(SRRef,varargin) ...@@ -2,7 +2,7 @@ function [SRB,SRC,SRU,SRS,SRV] = factorizeSR(SRRef,varargin)
%FACTORIZESR Summary of this function goes here %FACTORIZESR Summary of this function goes here
% Detailed explanation goes here % Detailed explanation goes here
[SRB,SRC,SRU,SRS,SRV] = cellfun(@(sr) SR.factorizeLF(sr,varargin{:}),SRRef,'UniformOutput',false); [SRB,SRC,SRU,SRS,SRV] = cellfun(@(sr) SR.factorize(sr,varargin{:}),SRRef,'UniformOutput',false);
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment