Skip to content
Snippets Groups Projects
Commit 5c9a361c authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Docstrings

parent 96f29994
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,9 @@ ...@@ -11,7 +11,9 @@
#include <cassert> #include <cassert>
DEFUN_DLD(duneevaluate, args, nargout, "the help string") { DEFUN_DLD(duneevaluate, args, nargout, "duneevaluate(y)\n\
\n\
Evaluate x -> 1/2<Ax,x> - <b,x> + H(|x|) at y using DUNE\n") {
assert(args.length() == 1); assert(args.length() == 1);
ColumnVector point(args(0).matrix_value()); ColumnVector point(args(0).matrix_value());
......
...@@ -11,7 +11,9 @@ ...@@ -11,7 +11,9 @@
#include <cassert> #include <cassert>
DEFUN_DLD(duneminimise, args, nargout, "the help string") { DEFUN_DLD(duneminimise, args, nargout, "duneminimise(y)\n\
\n\
Make a minimisation step of x -> 1/2<Ax,x> - <b,x> + H(|x|) using DUNE starting at x\n") {
assert(args.length() == 1); assert(args.length() == 1);
ColumnVector current(args(0).matrix_value()); ColumnVector current(args(0).matrix_value());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment