nat (version 1.8.16)

write.vtk: Write object to VTK file

Description

Write object to VTK file

Usage

write.vtk(x, file, ...)

# S3 method for neuron write.vtk( x, file, datatype = c("float", "double"), title = file, WriteAllSubTrees = TRUE, ... )

Arguments

x

Object to write

file

Path to output file

...

Additional arguments to methods

datatype

The VTK data type (one of float or double)

title

Title of the .vtk file (defaults to file)

WriteAllSubTrees

Whether to write all subtrees in the neuron or just the main tree.

Examples

Run this code
# NOT RUN {
n=Cell07PNs[[1]]
write.vtk(n, paste0(n$NeuronName, ".vtk"))
write.neuron(n, paste0(n$NeuronName, ".vtk"))
# }

Run the code above in your browser using DataLab