├── .gitignore ├── @MappedTensor ├── MappedTensor.m ├── abs.m ├── acos.m ├── acosh.m ├── all.m ├── and.m ├── any.m ├── arrayfun.m ├── arrayfun2.m ├── asin.m ├── asinh.m ├── atan.m ├── atanh.m ├── cast.m ├── ceil.m ├── conj.m ├── copyobj.m ├── cos.m ├── cosh.m ├── cumprod.m ├── cumsum.m ├── del2.m ├── disp.m ├── display.m ├── eq.m ├── exp.m ├── find.m ├── floor.m ├── fread.m ├── fwrite.m ├── ge.m ├── get.m ├── gt.m ├── imag.m ├── isequal.m ├── isfinite.m ├── isinf.m ├── isnan.m ├── ldivide.m ├── le.m ├── load.m ├── log.m ├── log10.m ├── lt.m ├── max.m ├── mean.m ├── median.m ├── min.m ├── minus.m ├── mldivide.m ├── mpower.m ├── mrdivide.m ├── mtimes.m ├── ne.m ├── nonzeros.m ├── norm.m ├── not.m ├── or.m ├── pack.m ├── plot.m ├── plus.m ├── power.m ├── private │ ├── ClassSize.m │ ├── ConvertColonsCheckLims.m │ ├── GetLinearIndicesForRefs.m │ ├── GetMexFunctionHandles.m │ ├── SplitFileChunks.m │ ├── binary.m │ ├── compare_dual_tensor.m │ ├── compare_single_tensor.m │ ├── create_temp_file.m │ ├── iscolon.m │ ├── isunique.m │ ├── isvalidsubscript.m │ ├── make_complex.m │ ├── mapped_tensor_chunklength.c │ ├── mapped_tensor_chunklength.mexa64 │ ├── mapped_tensor_chunklength_nomex.m │ ├── mapped_tensor_repsum.c │ ├── mapped_tensor_repsum.mexa64 │ ├── mapped_tensor_repsum_nomex.m │ ├── mapped_tensor_shim.c │ ├── mapped_tensor_shim.mexa64 │ ├── mapped_tensor_shim_nomex.m │ ├── mt_read_all.m │ ├── mt_read_data.m │ ├── mt_read_data_chunks.m │ ├── mt_write_all.m │ ├── mt_write_data.m │ ├── mt_write_data_chunks.m │ ├── my_subsref.m │ ├── private_load_edf.m │ ├── private_load_mar.m │ ├── private_load_mrc.m │ ├── private_load_npy.m │ ├── private_load_pos.m │ ├── private_load_smv.m │ ├── private_search_file.m │ ├── str2struct.m │ ├── unary.m │ └── unique_accel.m ├── prod.m ├── rdivide.m ├── real.m ├── reducevolume.m ├── reshape.m ├── round.m ├── runtest.m ├── set.m ├── sign.m ├── sin.m ├── sinh.m ├── size.m ├── sqrt.m ├── subsasgn.m ├── subsref.m ├── sum.m ├── tan.m ├── tanh.m ├── times.m ├── uminus.m ├── unpack.m ├── var.m ├── version.m └── xor.m └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.mexmaci64 2 | -------------------------------------------------------------------------------- /@MappedTensor/MappedTensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/MappedTensor.m -------------------------------------------------------------------------------- /@MappedTensor/abs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/abs.m -------------------------------------------------------------------------------- /@MappedTensor/acos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/acos.m -------------------------------------------------------------------------------- /@MappedTensor/acosh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/acosh.m -------------------------------------------------------------------------------- /@MappedTensor/all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/all.m -------------------------------------------------------------------------------- /@MappedTensor/and.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/and.m -------------------------------------------------------------------------------- /@MappedTensor/any.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/any.m -------------------------------------------------------------------------------- /@MappedTensor/arrayfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/arrayfun.m -------------------------------------------------------------------------------- /@MappedTensor/arrayfun2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/arrayfun2.m -------------------------------------------------------------------------------- /@MappedTensor/asin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/asin.m -------------------------------------------------------------------------------- /@MappedTensor/asinh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/asinh.m -------------------------------------------------------------------------------- /@MappedTensor/atan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/atan.m -------------------------------------------------------------------------------- /@MappedTensor/atanh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/atanh.m -------------------------------------------------------------------------------- /@MappedTensor/cast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/cast.m -------------------------------------------------------------------------------- /@MappedTensor/ceil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/ceil.m -------------------------------------------------------------------------------- /@MappedTensor/conj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/conj.m -------------------------------------------------------------------------------- /@MappedTensor/copyobj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/copyobj.m -------------------------------------------------------------------------------- /@MappedTensor/cos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/cos.m -------------------------------------------------------------------------------- /@MappedTensor/cosh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/cosh.m -------------------------------------------------------------------------------- /@MappedTensor/cumprod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/cumprod.m -------------------------------------------------------------------------------- /@MappedTensor/cumsum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/cumsum.m -------------------------------------------------------------------------------- /@MappedTensor/del2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/del2.m -------------------------------------------------------------------------------- /@MappedTensor/disp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/disp.m -------------------------------------------------------------------------------- /@MappedTensor/display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/display.m -------------------------------------------------------------------------------- /@MappedTensor/eq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/eq.m -------------------------------------------------------------------------------- /@MappedTensor/exp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/exp.m -------------------------------------------------------------------------------- /@MappedTensor/find.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/find.m -------------------------------------------------------------------------------- /@MappedTensor/floor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/floor.m -------------------------------------------------------------------------------- /@MappedTensor/fread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/fread.m -------------------------------------------------------------------------------- /@MappedTensor/fwrite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/fwrite.m -------------------------------------------------------------------------------- /@MappedTensor/ge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/ge.m -------------------------------------------------------------------------------- /@MappedTensor/get.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/get.m -------------------------------------------------------------------------------- /@MappedTensor/gt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/gt.m -------------------------------------------------------------------------------- /@MappedTensor/imag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/imag.m -------------------------------------------------------------------------------- /@MappedTensor/isequal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/isequal.m -------------------------------------------------------------------------------- /@MappedTensor/isfinite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/isfinite.m -------------------------------------------------------------------------------- /@MappedTensor/isinf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/isinf.m -------------------------------------------------------------------------------- /@MappedTensor/isnan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/isnan.m -------------------------------------------------------------------------------- /@MappedTensor/ldivide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/ldivide.m -------------------------------------------------------------------------------- /@MappedTensor/le.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/le.m -------------------------------------------------------------------------------- /@MappedTensor/load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/load.m -------------------------------------------------------------------------------- /@MappedTensor/log.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/log.m -------------------------------------------------------------------------------- /@MappedTensor/log10.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/log10.m -------------------------------------------------------------------------------- /@MappedTensor/lt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/lt.m -------------------------------------------------------------------------------- /@MappedTensor/max.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/max.m -------------------------------------------------------------------------------- /@MappedTensor/mean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/mean.m -------------------------------------------------------------------------------- /@MappedTensor/median.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/median.m -------------------------------------------------------------------------------- /@MappedTensor/min.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/min.m -------------------------------------------------------------------------------- /@MappedTensor/minus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/minus.m -------------------------------------------------------------------------------- /@MappedTensor/mldivide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/mldivide.m -------------------------------------------------------------------------------- /@MappedTensor/mpower.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/mpower.m -------------------------------------------------------------------------------- /@MappedTensor/mrdivide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/mrdivide.m -------------------------------------------------------------------------------- /@MappedTensor/mtimes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/mtimes.m -------------------------------------------------------------------------------- /@MappedTensor/ne.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/ne.m -------------------------------------------------------------------------------- /@MappedTensor/nonzeros.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/nonzeros.m -------------------------------------------------------------------------------- /@MappedTensor/norm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/norm.m -------------------------------------------------------------------------------- /@MappedTensor/not.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/not.m -------------------------------------------------------------------------------- /@MappedTensor/or.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/or.m -------------------------------------------------------------------------------- /@MappedTensor/pack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/pack.m -------------------------------------------------------------------------------- /@MappedTensor/plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/plot.m -------------------------------------------------------------------------------- /@MappedTensor/plus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/plus.m -------------------------------------------------------------------------------- /@MappedTensor/power.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/power.m -------------------------------------------------------------------------------- /@MappedTensor/private/ClassSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/ClassSize.m -------------------------------------------------------------------------------- /@MappedTensor/private/ConvertColonsCheckLims.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/ConvertColonsCheckLims.m -------------------------------------------------------------------------------- /@MappedTensor/private/GetLinearIndicesForRefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/GetLinearIndicesForRefs.m -------------------------------------------------------------------------------- /@MappedTensor/private/GetMexFunctionHandles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/GetMexFunctionHandles.m -------------------------------------------------------------------------------- /@MappedTensor/private/SplitFileChunks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/SplitFileChunks.m -------------------------------------------------------------------------------- /@MappedTensor/private/binary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/binary.m -------------------------------------------------------------------------------- /@MappedTensor/private/compare_dual_tensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/compare_dual_tensor.m -------------------------------------------------------------------------------- /@MappedTensor/private/compare_single_tensor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/compare_single_tensor.m -------------------------------------------------------------------------------- /@MappedTensor/private/create_temp_file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/create_temp_file.m -------------------------------------------------------------------------------- /@MappedTensor/private/iscolon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/iscolon.m -------------------------------------------------------------------------------- /@MappedTensor/private/isunique.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/isunique.m -------------------------------------------------------------------------------- /@MappedTensor/private/isvalidsubscript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/isvalidsubscript.m -------------------------------------------------------------------------------- /@MappedTensor/private/make_complex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/make_complex.m -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_chunklength.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_chunklength.c -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_chunklength.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_chunklength.mexa64 -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_chunklength_nomex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_chunklength_nomex.m -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_repsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_repsum.c -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_repsum.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_repsum.mexa64 -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_repsum_nomex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_repsum_nomex.m -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_shim.c -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_shim.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_shim.mexa64 -------------------------------------------------------------------------------- /@MappedTensor/private/mapped_tensor_shim_nomex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mapped_tensor_shim_nomex.m -------------------------------------------------------------------------------- /@MappedTensor/private/mt_read_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mt_read_all.m -------------------------------------------------------------------------------- /@MappedTensor/private/mt_read_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mt_read_data.m -------------------------------------------------------------------------------- /@MappedTensor/private/mt_read_data_chunks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mt_read_data_chunks.m -------------------------------------------------------------------------------- /@MappedTensor/private/mt_write_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mt_write_all.m -------------------------------------------------------------------------------- /@MappedTensor/private/mt_write_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mt_write_data.m -------------------------------------------------------------------------------- /@MappedTensor/private/mt_write_data_chunks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/mt_write_data_chunks.m -------------------------------------------------------------------------------- /@MappedTensor/private/my_subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/my_subsref.m -------------------------------------------------------------------------------- /@MappedTensor/private/private_load_edf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/private_load_edf.m -------------------------------------------------------------------------------- /@MappedTensor/private/private_load_mar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/private_load_mar.m -------------------------------------------------------------------------------- /@MappedTensor/private/private_load_mrc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/private_load_mrc.m -------------------------------------------------------------------------------- /@MappedTensor/private/private_load_npy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/private_load_npy.m -------------------------------------------------------------------------------- /@MappedTensor/private/private_load_pos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/private_load_pos.m -------------------------------------------------------------------------------- /@MappedTensor/private/private_load_smv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/private_load_smv.m -------------------------------------------------------------------------------- /@MappedTensor/private/private_search_file.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/private_search_file.m -------------------------------------------------------------------------------- /@MappedTensor/private/str2struct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/str2struct.m -------------------------------------------------------------------------------- /@MappedTensor/private/unary.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/unary.m -------------------------------------------------------------------------------- /@MappedTensor/private/unique_accel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/private/unique_accel.m -------------------------------------------------------------------------------- /@MappedTensor/prod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/prod.m -------------------------------------------------------------------------------- /@MappedTensor/rdivide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/rdivide.m -------------------------------------------------------------------------------- /@MappedTensor/real.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/real.m -------------------------------------------------------------------------------- /@MappedTensor/reducevolume.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/reducevolume.m -------------------------------------------------------------------------------- /@MappedTensor/reshape.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/reshape.m -------------------------------------------------------------------------------- /@MappedTensor/round.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/round.m -------------------------------------------------------------------------------- /@MappedTensor/runtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/runtest.m -------------------------------------------------------------------------------- /@MappedTensor/set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/set.m -------------------------------------------------------------------------------- /@MappedTensor/sign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/sign.m -------------------------------------------------------------------------------- /@MappedTensor/sin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/sin.m -------------------------------------------------------------------------------- /@MappedTensor/sinh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/sinh.m -------------------------------------------------------------------------------- /@MappedTensor/size.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/size.m -------------------------------------------------------------------------------- /@MappedTensor/sqrt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/sqrt.m -------------------------------------------------------------------------------- /@MappedTensor/subsasgn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/subsasgn.m -------------------------------------------------------------------------------- /@MappedTensor/subsref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/subsref.m -------------------------------------------------------------------------------- /@MappedTensor/sum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/sum.m -------------------------------------------------------------------------------- /@MappedTensor/tan.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/tan.m -------------------------------------------------------------------------------- /@MappedTensor/tanh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/tanh.m -------------------------------------------------------------------------------- /@MappedTensor/times.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/times.m -------------------------------------------------------------------------------- /@MappedTensor/uminus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/uminus.m -------------------------------------------------------------------------------- /@MappedTensor/unpack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/unpack.m -------------------------------------------------------------------------------- /@MappedTensor/var.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/var.m -------------------------------------------------------------------------------- /@MappedTensor/version.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/version.m -------------------------------------------------------------------------------- /@MappedTensor/xor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/@MappedTensor/xor.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanMuir/MappedTensor/HEAD/README.md --------------------------------------------------------------------------------