Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 349 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 349 Bytes

This repository is a test toolbox for Scilab.

Steps to implement the demo transpose function in C:

  1. Open the "test" directory in Scilab and run the following commands
  2. exec builder.sce
  3. 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.