Windows package: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
= Installation = | = Installation = | ||
== | == Package requirements == | ||
This package requires Octave 3.6 or later. | This package requires Octave 3.6 or later. | ||
== | == Octave installation == | ||
The package may already be installed if you are using the mxe-octave based installation of windows. | The package may already be installed if you are using the mxe-octave based installation of windows. | ||
To verify, from octave | To verify, from octave command line: | ||
>> pkg install list windows | >> pkg install list windows | ||
To install from octave | To install from octave command line: | ||
>> pkg | >> pkg -forge install windows | ||
= Using it = | = Using it = | ||
Line 37: | Line 37: | ||
Documentation and reference for the Windows package is available on [https://octave.sourceforge.io/windows/overview.html Octave forge] | Documentation and reference for the Windows package is available on [https://octave.sourceforge.io/windows/overview.html Octave forge] | ||
[[Category:Octave Forge]] | [[Category:Octave Forge]][[Category:Packages]] |
Latest revision as of 20:57, 1 July 2022
The windows package is part of the Octave Forge project and provides a COM interface and additional functionality on Windows
Installation[edit]
Package requirements[edit]
This package requires Octave 3.6 or later.
Octave installation[edit]
The package may already be installed if you are using the mxe-octave based installation of windows.
To verify, from octave command line:
>> pkg install list windows
To install from octave command line:
>> pkg -forge install windows
Using it[edit]
Load it before any usage:
>> pkg load windows
Simple example[edit]
This example uses the com interface to display the current directory.
wshell = actxserver ("WScript.Shell"); wshell.CurrentDirectory
Documentation[edit]
Documentation and reference for the Windows package is available on Octave forge