Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

...

As you look through the OpenSim doxygen or if you look at OpenSim API examples, in C++, you may see objects/classes with names like Array_<double> or Vec<3>. These are called templatized classes; this is another functionality that exists in C++ to help programmers simplify and reuse common code. But this doesn't exist in Matlab. So we have created scripting versions of the most commonly used templatized classes. You can find a list of all of these on the page Scripting Versions of OpenSim C++ API Calls. If you see a class name with angle brackets (< >), you can look it up on this page to find the class name to use in Matlab. 

 


...

Adding Geometry Paths to Matlab 

...

Code Block
>>> muscle.getOutputNames();

 

 

...