Skip to content

Commit

Permalink
Updated obsolete link
Browse files Browse the repository at this point in the history
  • Loading branch information
johanlofberg committed Jun 12, 2018
1 parent 48e5c05 commit 1c68bb9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
9 changes: 3 additions & 6 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ unzip yalmip.zip. This should create the structure
/yalmip
/yalmip/@sdpvar
/yalmip/extras
/yalmip/demos
/yalmip/solvers
/yalmip/modules
/yalmip/operators
Expand All @@ -22,7 +21,6 @@ Put the following paths in your MATLAB path

/yalmip
/yalmip/extras
/yalmip/demos
/yalmip/solvers
/yalmip/modules
/yalmip/modules/parametric
Expand All @@ -41,11 +39,10 @@ Make sure to have the desired solvers in your path.
Restart Matlab, or at least type "clear classes".

6)
Run yalmiptest.m and everything should work (as long as you have the
necessary solvers).
Run yalmiptest.m and everything should work (as long as you have the necessary solvers).

Learn more at
http://users.isy.liu.se/johanl/yalmip
yalmip.github.io

Forum
https://groups.google.com/forum/?fromgroups#!forum/yalmip
Expand All @@ -55,4 +52,4 @@ https://groups.google.com/forum/?fromgroups#!forum/yalmip
Comments and bug-reports are higly appreciated.

Johan L�fberg, Link�ping University
johanl@isy.liu.se
johan.lofberg@liu.se
3 changes: 1 addition & 2 deletions demos/readme.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
For demos, please see the extensive on-line manual
http://users.isy.liu.se/johanl/yalmip
For demos, please see the extensive on-line manual yalmip.github.io
10 changes: 5 additions & 5 deletions extras/compileinterfacedata.m
Original file line number Diff line number Diff line change
Expand Up @@ -1038,27 +1038,27 @@
% Sanity check
if ~isempty(c)
if any(isnan(c) )
error('You have NaNs in your objective!. Read more: http://users.isy.liu.se/johanl/yalmip/pmwiki.php?n=Extra.NANInModel')
error('You have NaNs in your objective!. Read more: https://yalmip.github.io/naninmodel/')
end
end
if ~isempty(Q)
if any(any(isnan(Q)))
error('You have NaNs in your quadratic objective!. Read more: http://users.isy.liu.se/johanl/yalmip/pmwiki.php?n=Extra.NANInModel')
error('You have NaNs in your quadratic objective!. Read more: https://yalmip.github.io/naninmodel/')
end
end
if ~isempty(lb)
if any(isnan(lb))
error('You have NaNs in a lower bound!. Read more: http://users.isy.liu.se/johanl/yalmip/pmwiki.php?n=Extra.NANInModel')
error('You have NaNs in a lower bound!. Read more: https://yalmip.github.io/naninmodel/')
end
end
if ~isempty(ub)
if any(isnan(ub))
error('You have NaNs in an upper bound!.Read more: http://users.isy.liu.se/johanl/yalmip/pmwiki.php?n=Extra.NANInModel')
error('You have NaNs in an upper bound!.Read more: https://yalmip.github.io/naninmodel/')
end
end
if ~isempty(F_struc)
if any(any(isnan(F_struc)))
error('You have NaNs in your constraints!. Read more: http://users.isy.liu.se/johanl/yalmip/pmwiki.php?n=Extra.NANInModel')
error('You have NaNs in your constraints!. Read more: https://yalmip.github.io/naninmodel/')
end
end

Expand Down

0 comments on commit 1c68bb9

Please sign in to comment.