Skip to content

Latest commit

 

History

History
75 lines (48 loc) · 1.61 KB

filters.matlab.rst

File metadata and controls

75 lines (48 loc) · 1.61 KB

filters.matlab

This filter allows Matlab software to be embedded in a :ref:`pipeline` that interacts with struct array of the data and allows you to modify those points. Additionally, some global :ref:`metadata` is also available that Matlab functions can interact with.

Intensity(1)

The interpreter must exit and always set ans==true upon success. If ans==false an error would be thrown and the :ref:`pipeline` exited.

.. seealso::
    :ref:`writers.matlab` can be used to write ``.mat`` files.

Note

:ref:`filters.matlab` embeds the entire Matlab interpreter, and it will require a fully licensed version of Matlab to execute your script.

Example

{
  "pipeline":
  [
    {
      "filename": "test\/data\/las\/1.2-with-color.las",
      "type": "readers.las"

    },
    {
      "type": "filters.matlab",
      "script": "matlab.m"

    },

    {
      "filename": "out.las",
      "type": "writers.las"
    }
  ]
}

Options

script
When reading a function from a separate Matlab file, the file name to read from. [Example: functions.m]
source
The literal Matlab code to execute, when the script option is not being used.
add_dimension
The name of a dimension to add to the pipeline that does not already exist.
struct
Array structure name to read [OPTIONAL, defaults PDAL]