Description Usage Arguments Details Value See Also
View source: R/transform_xifti.R
Apply a univariate transformation to each value in a "xifti"
or pair of
"xifti"
s. If a pair, they must share the same dimensions (brainstructures)
and number of measurements.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | transform_xifti(xifti, FUN, xifti2 = NULL, ...)
## S3 method for class 'xifti'
xifti + xifti2
## S3 method for class 'xifti'
xifti - xifti2
## S3 method for class 'xifti'
xifti * xifti2
## S3 method for class 'xifti'
xifti ^ xifti2
## S3 method for class 'xifti'
xifti %% xifti2
## S3 method for class 'xifti'
xifti %/% xifti2
## S3 method for class 'xifti'
xifti / xifti2
## S3 method for class 'xifti'
abs(x)
## S3 method for class 'xifti'
sign(x)
## S3 method for class 'xifti'
sqrt(x)
## S3 method for class 'xifti'
floor(x)
## S3 method for class 'xifti'
ceiling(x)
## S3 method for class 'xifti'
round(x, digits = 0)
## S3 method for class 'xifti'
exp(x)
## S3 method for class 'xifti'
log(x, base = exp(1))
|
xifti |
The xifti |
FUN |
The function. If |
xifti2 |
The second xifti, if applicable. Otherwise, |
... |
Additional arguments to |
x |
The |
digits |
The number of digits to round by |
base |
The log base |
If the "xifti"
had the dlabel intent, and the transformation creates
any value that is not a label value (e.g. a non-integer), then it is converted
to a dscalar.
A "xifti"
storing the result of applying FUN
to the input(s).
The data dimensions will be the same. The metadata of xifti
will be retained,
and the metadata of xifti2
will be discarded (if provided).
Other functions for manipulating 'xifti' objects:
add_surf()
,
apply_xifti()
,
combine_xifti()
,
convert_to_dlabel()
,
merge_xifti()
,
newdata_xifti()
,
remove_xifti()
,
select_xifti()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.