You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-11Lines changed: 5 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -12,23 +12,17 @@ Related projects:
12
12
13
13
## Usage
14
14
15
-
1.Clone or download this repository, then add the folder containing `+DSS_MATLAB` to your path.
15
+
1.Download a package from the [releases page](https://github.com/PMeira/dss_matlab/releases).
16
16
17
-
2.Download or build DSS C-API and place the resulting DLLs / shared libraries into `+DSS_MATLAB`.
17
+
2.Add the folder containing `+DSS_MATLAB` to your MATLAB path.
18
18
19
-
3. Until we get a release out, you first need to build the thunk DLL. You'll need a MATLAB-compatible compiler:
20
-
21
-
```
22
-
DSS_MATLAB.build
23
-
```
24
-
25
-
4. Instantiate `DSS_MATLAB.IDSS`. For example:
19
+
3. Instantiate `DSS_MATLAB.IDSS`. For example:
26
20
27
21
```matlab
28
-
Obj = DSS_MATLAB.IDSS;
22
+
dss = DSS_MATLAB.IDSS;
29
23
```
30
24
31
-
5. If you find issues or missing features, feel free to [open an issue ticket on GitHub](https://github.com/PMeira/dss_matlab/issues/new) or email me (pmeira at ieee.org).
25
+
4. If you find issues or missing features, feel free to [open an issue ticket on GitHub](https://github.com/PMeira/dss_matlab/issues/new) or email me (pmeira at ieee.org).
32
26
33
27
If you code is based on `DSSStartup.m` from the examples, in general you only need to replace the `Obj = actxserver('OpenDSSEngine.DSS');` line. That is, update `DSSStartup.m` to:
0 commit comments