Description Usage Arguments Value Examples
Reads in a GIFTI file and coerces it to a list
1 |
file |
file name of GIFTI file |
List of elements
1 2 3 4 5 6 7 8 9 10 11 12 13 | if (have_gifti_test_data(outdir = NULL)) {
gii_files = download_gifti_data(outdir = NULL)
L = gifti_list(gii_files[1])
orig = L$DataArray$Data[[1]]
encoding = attributes(L$DataArray)$Encoding
datatype = attributes(L$DataArray)$DataType
endian = attributes(L$DataArray)$Endian
vals = data_decoder(orig, encoding = encoding,
datatype = datatype, endian = endian)
enc = data_encoder(vals, encoding = encoding,
datatype = datatype, endian = endian)
enc == orig
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.