view main/fixed/src/op-fcm-fcm.cc @ 9931:58d36e8880db octave-forge

Description: Make the package compile against HDF5 1.8 Author: Rafael Laboissiere <rafael@laboissiere.net>
author jordigh
date Fri, 30 Mar 2012 15:59:45 +0000
parents 2de537641f94
children
line wrap: on
line source

/*

Copyright (C) 2003 Motorola Inc
Copyright (C) 2003 David Bateman

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 2, 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 this program; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

In addition to the terms of the GPL, you are permitted to link
this program with any Open Source program, as defined by the
Open Source Initiative (www.opensource.org)

*/

#include <iostream>

#include <octave/config.h>
#include <octave/gripes.h>
#include <octave/oct-obj.h>
#include <octave/ov.h>
#include <octave/ov-re-mat.h>
#include <octave/ov-typeinfo.h>
#include <octave/ops.h>

#include "ov-fixed-complex.h"
#include "ov-fixed-cx-mat.h"
#include "fixed-def.h"

// fixed complex matrix unary ops.

FIXED_DEFUNOP_OP (not, fixed_complex_matrix, !)
FIXED_DEFUNOP_OP (uminus, fixed_complex_matrix, -)
FIXED_DEFUNOP_OP (uplus, fixed_complex_matrix, /* no-op */)

DEFUNOP (transpose, fixed_complex_matrix)
{
  CAST_UNOP_ARG (const octave_fixed_complex_matrix&);

  return new octave_fixed_complex_matrix 
    (v.fixed_complex_matrix_value().transpose ());
}

DEFUNOP (hermitian, fixed_complex_matrix)
{
  CAST_UNOP_ARG (const octave_fixed_complex_matrix&);

  return new octave_fixed_complex_matrix 
    (v.fixed_complex_matrix_value().hermitian ());
}

DEFNCUNOP_METHOD (incr, fixed_complex_matrix, increment)
DEFNCUNOP_METHOD (decr, fixed_complex_matrix, decrement)

// fixed complex matrix by fixed complex matrix ops.

FIXED_DEFBINOP_OP (add, fixed_complex_matrix, fixed_complex_matrix, 
		   fixed_complex_matrix, +)
FIXED_DEFBINOP_OP (sub, fixed_complex_matrix, fixed_complex_matrix, 
		   fixed_complex_matrix, -)
FIXED_DEFBINOP_OP (mul, fixed_complex_matrix, fixed_complex_matrix, 
		   fixed_complex_matrix, *)

DEFBINOPX (pow, fixed_complex_matrix, fixed_complex_matrix)
{
  error ("can't do A ^ B for A and B both matrices");
  return octave_value ();
}

DEFBINOP_FN (lt, fixed_complex_matrix, fixed_complex_matrix, mx_el_lt)
DEFBINOP_FN (le, fixed_complex_matrix, fixed_complex_matrix, mx_el_le)
DEFBINOP_FN (eq, fixed_complex_matrix, fixed_complex_matrix, mx_el_eq)
DEFBINOP_FN (ge, fixed_complex_matrix, fixed_complex_matrix, mx_el_ge)
DEFBINOP_FN (gt, fixed_complex_matrix, fixed_complex_matrix, mx_el_gt)
DEFBINOP_FN (ne, fixed_complex_matrix, fixed_complex_matrix, mx_el_ne)

FIXED_DEFBINOP_FN (el_mul, fixed_complex_matrix, fixed_complex_matrix, 
		   fixed_complex_matrix, product)
FIXED_DEFBINOP_FN (el_div, fixed_complex_matrix, fixed_complex_matrix, 
		   fixed_complex_matrix, quotient)
FIXED_DEFBINOP_FN (el_pow, fixed_complex_matrix, fixed_complex_matrix,
		   fixed_complex_matrix, elem_pow)

DEFBINOP (el_ldiv, fixed_complex_matrix, fixed_complex_matrix)
{
  CAST_BINOP_ARGS (const octave_fixed_complex_matrix&, 
		   const octave_fixed_complex_matrix&);

  boolMatrix no_zeros = (v1.fixed_complex_matrix_value().all()).all();
  if (!no_zeros(0,0))
    gripe_divide_by_zero ();

  octave_value retval = new octave_fixed_complex_matrix 
    (quotient(v2.fixed_complex_matrix_value(),
	      v1.fixed_complex_matrix_value ()));
  retval.maybe_mutate();
  return retval;
}

DEFBINOP_FN (el_and, fixed_complex_matrix, fixed_complex_matrix, mx_el_and)
DEFBINOP_FN (el_or, fixed_complex_matrix, fixed_complex_matrix, mx_el_or)

CONVDECLX (fixed_complex_matrix_conv)
{
  return new octave_fixed_complex_matrix ();
}

FIXED_DEFCATOP_FN (fcm_fcm, fixed_complex_matrix, fixed_complex_matrix, 
		   fixed_complex_matrix, fixed_complex_matrix,
		   fixed_complex_matrix, concat)

DEFASSIGNOP_FN (assign, fixed_complex_matrix, fixed_complex_matrix, assign)

OCTAVE_FIXED_API void
install_fcm_fcm_ops (void)
{
  INSTALL_UNOP (op_not, octave_fixed_complex_matrix, not);
  INSTALL_UNOP (op_uminus, octave_fixed_complex_matrix, uminus);
  INSTALL_UNOP (op_uplus, octave_fixed_complex_matrix, uplus);
  INSTALL_UNOP (op_transpose, octave_fixed_complex_matrix, transpose);
  INSTALL_UNOP (op_hermitian, octave_fixed_complex_matrix, hermitian);

  INSTALL_NCUNOP (op_incr, octave_fixed_complex_matrix, incr);
  INSTALL_NCUNOP (op_decr, octave_fixed_complex_matrix, decr);

  INSTALL_BINOP (op_add, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, add);
  INSTALL_BINOP (op_sub, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, sub);
  INSTALL_BINOP (op_mul, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, mul);
  INSTALL_BINOP (op_pow, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, pow);
  INSTALL_BINOP (op_lt, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, lt);
  INSTALL_BINOP (op_le, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, le);
  INSTALL_BINOP (op_eq, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, eq);
  INSTALL_BINOP (op_ge, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, ge);
  INSTALL_BINOP (op_gt, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, gt);
  INSTALL_BINOP (op_ne, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, ne);
  INSTALL_BINOP (op_el_mul, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, el_mul);
  INSTALL_BINOP (op_el_div, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, el_div);
  INSTALL_BINOP (op_el_pow, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, el_pow);
  INSTALL_BINOP (op_el_ldiv, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, el_ldiv);
  INSTALL_BINOP (op_el_and, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, el_and);
  INSTALL_BINOP (op_el_or, octave_fixed_complex_matrix, 
		 octave_fixed_complex_matrix, el_or);

  FIXED_INSTALL_CATOP (octave_fixed_complex_matrix, octave_fixed_complex_matrix,
		       fcm_fcm);

  INSTALL_ASSIGNOP (op_asn_eq, octave_fixed_complex_matrix, 
		    octave_fixed_complex_matrix, assign);
  INSTALL_ASSIGNCONV (octave_base_value, octave_fixed_complex_matrix, 
		      octave_fixed_complex_matrix);

  INSTALL_WIDENOP (octave_base_value, octave_fixed_complex_matrix, 
		   fixed_complex_matrix_conv);
}

/*
;;; Local Variables: ***
;;; mode: C++ ***
;;; End: ***
*/