Manual (API)

XLPack API: C/C++ example programs

C example program (Example (1), Visual C) This is the example using Visual C (Visual Studio (Windows version)). Note that matrices are stored in column-major order (same with VBA and Fortran, rows and columns are opposite to the C/C++ storage order). One dimensional array is used for a and b (In the reference manual, the […]


XLPack API: Python example programs

How to call XLPack from Python The XLPack Lite Python extension module is included in SDK, so that the calling program can easily call XLPack Lite like built-in functions by declaring “import XLPackLite” (or “import XLPackLite_32” for 32 bit Python). Numpy ndarray is used to represent the matrix. Either two dimensional or one dimensional array […]


XLPack API: Julia example programs

How to call XLPack from Julia The XLPack Lite Julia interface program is included in SDK, so that the calling program can easily call XLPack Lite like built-in functions by declaring “using XLPack”. Float64 is used for floating point variables and Int32 is used for integer variables. Either two dimensional or one dimensional array can […]


XLPack API: C# example programs

How to call XLPack from C# To call XLPack from C#, it is necessary to use DLL directly. DLL interface program xlpack.cs is included in SDK, so that the calling program can easily call XLPack like built-in functions without considering the detail DLL interface by declaring “using static XLPack;”. Two dimensional array is used for […]


XLPack API: F# example programs

How to call XLPack from F# To call XLPack from F#, it is necessary to use DLL directly. DLL interface program xlpack_fs.fs is included in SDK, so that the calling program can easily call XLPack like built-in functions without considering the detail DLL interface by declaring “open XLPack”. Two dimensional array is used for the […]


XLPack API: VB.Net example programs

How to call XLPack from C# To call XLPack from VB.Net, it is necessary to use DLL directly. DLL interface program xlpack.vb is included in SDK, so that the calling program can easily call XLPack like built-in functions without considering the detail DLL interface by declaring “Imports XLPack”. Two dimensional array is used for the […]


XLPack API: Pascal example programs

How to call XLPack from Pascal To call XLPack from Pascal (Delphi or Free Pascal), it is necessary to use DLL directly. DLL interface program xlpack.pas is included in SDK, so that the calling program can easily call XLPack like built-in functions without considering the detail DLL interface by declaring “uses XLPack;”. One dimensional array […]