view test/bug-58593/myclass1.m @ 31224:45984c799215

sparse-xpow.cc: Use faster multiplication technique based on input matrix sparsity
author Arun Giridhar <arungiridhar@gmail.com>
date Sat, 10 Sep 2022 15:44:05 -0400
parents 3719f5d452d4
children
line wrap: on
line source

classdef myclass1 < handle
  properties
    data
  end
  methods
    function obj = myclass1 ()
      obj.data = 1001:1005;
    end
  end
end