annotate test/classes/@Snork/ldivide.m @ 20595:c1a6c31ac29a

eliminate more simple uses of error_state * ov-classdef.cc: Eliminate simple uses of error_state.
author John W. Eaton <jwe@octave.org>
date Tue, 06 Oct 2015 00:20:02 -0400
parents b1283d4c06c2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16213
b1283d4c06c2 test: Use Octave coding standards for scripts in test/ directory.
Rik <rik@octave.org>
parents: 15985
diff changeset
1 function s = ldivide (s1, s2)
15985
f75ffcc82acb Added tests for the legacy class system.
Julien Bect <julien.bect@supelec.fr>
parents:
diff changeset
2
16213
b1283d4c06c2 test: Use Octave coding standards for scripts in test/ directory.
Rik <rik@octave.org>
parents: 15985
diff changeset
3 x1 = double (s1);
b1283d4c06c2 test: Use Octave coding standards for scripts in test/ directory.
Rik <rik@octave.org>
parents: 15985
diff changeset
4 x2 = double (s2);
15985
f75ffcc82acb Added tests for the legacy class system.
Julien Bect <julien.bect@supelec.fr>
parents:
diff changeset
5
f75ffcc82acb Added tests for the legacy class system.
Julien Bect <julien.bect@supelec.fr>
parents:
diff changeset
6 s = Snork(x1 .\ x2);
f75ffcc82acb Added tests for the legacy class system.
Julien Bect <julien.bect@supelec.fr>
parents:
diff changeset
7
f75ffcc82acb Added tests for the legacy class system.
Julien Bect <julien.bect@supelec.fr>
parents:
diff changeset
8 end