A transform.
Notes
Valid coordinate frames are ‘meg’,’mri’,’mri_voxel’,’head’,’mri_tal’,’ras’ ‘fs_tal’,’ctf_head’,’ctf_meg’,’unknown’
Methods
|
True if the dictionary has the specified key, else False. |
x.__getitem__(y) <==> x[y] |
|
|
Implement iter(self). |
|
Return len(self). |
|
|
|
Make a copy of the transform. |
|
Create a new dictionary with keys from iterable and values set to value. |
|
Return the value for key if key is in the dictionary, else default. |
|
|
|
|
|
If key is not found, d is returned if given, otherwise KeyError is raised |
|
Remove and return a (key, value) pair as a 2-tuple. |
|
Save the transform as -trans.fif file. |
|
Insert key with a value of default if key is not in the dictionary. |
|
If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k] |
|
True if the dictionary has the specified key, else False.
x.__getitem__(y) <==> x[y]
Implement iter(self).
Return len(self).
The “from” frame as a string.
Create a new dictionary with keys from iterable and values set to value.
Return the value for key if key is in the dictionary, else default.
If key is not found, d is returned if given, otherwise KeyError is raised
Remove and return a (key, value) pair as a 2-tuple.
Pairs are returned in LIFO (last-in, first-out) order. Raises KeyError if the dict is empty.
Save the transform as -trans.fif file.
str
The name of the file, which should end in ‘-trans.fif’.
Insert key with a value of default if key is not in the dictionary.
Return the value for key if key is in the dictionary, else default.
The “to” frame as a string.
If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]