Difference between revisions of "Impound.m"
m (Spot-edit Spinach function page first-line NOTOC and template fields) |
(Update function See also links and function index membership) |
||
| (3 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
{{DISPLAYTITLE:impound.m}} __NOTOC__ | {{DISPLAYTITLE:impound.m}} __NOTOC__ | ||
| − | Simple input capture. | + | Simple input capture utility that packages everything it receives into a cell array and returns it; it is useful for pulling information back from Spinach [[kernel contexts|context functions]] when called as a pulse sequence. |
==Syntax== | ==Syntax== | ||
| Line 6: | Line 6: | ||
answer=impound(varargin) | answer=impound(varargin) | ||
| − | == | + | ==Parameters== |
| − | |||
| − | |||
| − | |||
varargin - any number of parameters of any type | varargin - any number of parameters of any type | ||
| Line 21: | Line 18: | ||
==See also== | ==See also== | ||
| − | [[acquire.m]], [[hp_acquire.m]], [[sp_acquire.m]], [[Built-in_experiments | + | [[acquire.m]], [[hp_acquire.m]], [[sp_acquire.m]], [[cpmg.m]], [[holeburn.m]], [[relaxan.m]], [[slowpass.m]], [[traject.m]], [[Built-in_experiments]] |
''Version 2.1, authors: [[Ilya Kuprov]]'' | ''Version 2.1, authors: [[Ilya Kuprov]]'' | ||
Latest revision as of 19:37, 6 June 2026
Simple input capture utility that packages everything it receives into a cell array and returns it; it is useful for pulling information back from Spinach context functions when called as a pulse sequence.
Syntax
answer=impound(varargin)
Parameters
varargin - any number of parameters of any type
Outputs
answer - all input parameters as a cell array
Examples
See MAS optimal control examples in examples/optimal_control directory.
See also
acquire.m, hp_acquire.m, sp_acquire.m, cpmg.m, holeburn.m, relaxan.m, slowpass.m, traject.m, Built-in_experiments
Version 2.1, authors: Ilya Kuprov