view examples/code/addtwomatrices.cc @ 31158:8f3885b4d7ae stable

test: Set random state and increase tolerance for interpn.m test (bug #62817)
author Arun Giridhar <arungiridhar@gmail.com>
date Thu, 28 Jul 2022 19:22:56 -0400
parents 2f8500ca91d3
children
line wrap: on
line source

#include <octave/oct.h>

DEFUN_DLD (addtwomatrices, args, , "Add A to B")
{
  if (args.length () != 2)
    print_usage ();

  NDArray A = args(0).array_value ();
  NDArray B = args(1).array_value ();

  return octave_value (A + B);
}