X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=CreaPhase.git;a=blobdiff_plain;f=octave_packages%2Flinear-algebra-2.2.0%2F%40blksparse%2Fminus.m;fp=octave_packages%2Flinear-algebra-2.2.0%2F%40blksparse%2Fminus.m;h=c14f95f8f959958d3033259c940020a0bb973011;hp=0000000000000000000000000000000000000000;hb=f5f7a74bd8a4900f0b797da6783be80e11a68d86;hpb=1705066eceaaea976f010f669ce8e972f3734b05 diff --git a/octave_packages/linear-algebra-2.2.0/@blksparse/minus.m b/octave_packages/linear-algebra-2.2.0/@blksparse/minus.m new file mode 100644 index 0000000..c14f95f --- /dev/null +++ b/octave_packages/linear-algebra-2.2.0/@blksparse/minus.m @@ -0,0 +1,40 @@ +## Copyright (C) 2010 VZLU Prague +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 3 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with Octave; see the file COPYING. If not, see +## . + +function s = minus (s1, s2) + if (isa (s1, "blksparse") && isa (s2, "blksparse")) + ## Conformance check. + siz1 = s1.siz; + bsiz1 = s1.bsiz; + siz2 = s2.siz; + bsiz2 = s2.bsiz; + if (bsiz1(2) != bsiz2(1)) + gripe_nonconformant (bsiz1, bsiz2, "block sizes"); + elseif (siz1(2) != siz2(1)) + gripe_nonconformant (bsiz1.*siz1, bsiz2.*siz2); + endif + + ## Stupid & simple. + s = blksparse ([s1.i; s2.i], [s1.j; s2.j], cat (3, s1.sv, -s2.sv), siz1(1), siz1(2)); + else + error ("blksparse: only blksparse - blksparse implemented"); + endif +endfunction + +function gripe_nonconformant (s1, s2, what = "arguments") + error ("Octave:nonconformant-args", ... + "nonconformant %s (op1 is %dx%d, op2 is %dx%d)", what, s1, s2); +endfunction