This repository is a test toolbox for Scilab.
Steps to implement the demo transpose function in C:
- Open the "test" directory in Scilab and run the following commands
- exec builder.sce
- exec loader.sce
The tranpose functions is now loaded.
Example:
Input: transpose([1,2;3,0;2,5])
Output:
1. 3. 2.
2. 0. 5.