Skip to content
Peter Hollender edited this page Dec 13, 2023 · 11 revisions

Open-TFUS API Reference

This wiki is set up as an API reference for the Open-TFUS software

Similar to python modules, MATLAB namespaces organize the code by functional groupings. Namespaces can contain Classes and standalone functions. Functions/Classes in namespaces can be called in one of two ways: importing (import namespace.func or import namespace.*) and then calling func(...) directly calling the function including the namespace: namespace.func(...)

Namespaces

open_tfus is organized into the following namespaces:

  • fus: top level namespace

In general, as long as the folder containing +fus is on your MATLAB path, you will have access to all of the namespaces.

Clone this wiki locally