Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MatlabOperation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
49
Issues
49
List
Boards
Labels
Service Desk
Milestones
Jira
Jira
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BeamDynamics
MatlabOperation
Commits
7374d90a
Commit
7374d90a
authored
Dec 11, 2018
by
Simone Liuzzo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added missing function from matutil repository
parent
c373256a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
esrf_matlab/nselect.m
esrf_matlab/nselect.m
+17
-0
No files found.
esrf_matlab/nselect.m
0 → 100644
View file @
7374d90a
function
varargout
=
nselect
(
step
,
func
,
i
,
varargin
)
%NSELECT decimate calls to a function
%
persistent
is
if
i
==
1
is
=
step
-
1
;
end
if
is
==
0
[
varargout
{
1
:
nargout
}]
=
func
(
i
,
varargin
{:});
is
=
step
;
else
varargout
=
cell
(
nargout
,
1
);
end
is
=
is
-
1
;
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment