Skip to content

Commit da27261

Browse files
committed
Minor fix to the example.
1 parent c95e221 commit da27261

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/13Bus/run.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
% If you have not already added DSS_MATLAB to your MATLAB path, you can
33
% use a command like one of the following -- adjust path as necessary:
44

5-
%path(path, 'c:\users\user\username\dss_matlab');
5+
%path(path, 'c:\users\username\dss_matlab');
66
%path(path, '/home/username/dss_matlab');
77
%path(path, '/Users/username/dss_matlab');
88

@@ -66,7 +66,7 @@
6666

6767
idx = Load.First;
6868
while idx ~= 0
69-
disp(sprintf('Load %s - rated power: %g kW, %g kvar', Load.Name, Load.kW, Load.kvar))
69+
fprintf('Load %s - rated power: %g kW, %g kvar', Load.Name, Load.kW, Load.kvar);
7070
idx = Load.Next;
7171
end
7272

0 commit comments

Comments
 (0)