-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
48 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
title: Matlab | ||
title: Matlab / Octave | ||
layout: default | ||
nav_order: 3 | ||
parent: Interfaces | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: Installation (Octave) | ||
layout: default | ||
parent: Matlab / Octave | ||
grand_parent: Interfaces | ||
nav_order: 2 | ||
--- | ||
|
||
## Installing package | ||
|
||
PIQP can be directly installed running the following command | ||
|
||
```matlab | ||
pkg install "https://github.com/PREDICT-EPFL/piqp/releases/latest/download/piqp-octave.tar.gz" | ||
``` | ||
|
||
Before using PIQP in Octave make sure to load it in your script with | ||
```matlab | ||
pkg load piqp | ||
``` | ||
|
||
## Building and Installing from Source | ||
|
||
* Clone PIQP from Github | ||
```shell | ||
git clone https://github.com/PREDICT-EPFL/piqp.git | ||
``` | ||
* Package PIQP in Octave by executing the following commands | ||
```matlab | ||
cd interfaces/octave | ||
package_piqp | ||
``` | ||
This will download all dependencies and package the Octave interface into a `piqp-octave.tar.gz` file. | ||
You can then install the package with | ||
```matlab | ||
pkg install piqp-octave.tar.gz | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters