mathed ~master (2022-05-27T19:57:24.9040539)
Dub
Repo
Matrix.opBinary
mathed
types
matrix
Matrix
Processes matrix multiplication with another matrix.
Self
opBinary
(Matrix!(Lines, Cols, SumType) summand)
Self
opBinary
(Number num)
auto
opBinary
(Factor factor)
struct
Matrix
(size_t Lines, size_t Cols, Type = float)
@
trusted
pure nothrow
auto
opBinary
(
string
op
Factor
)
(
in
Factor
factor
)
if
(
op
== "*" &&
isMatrix
!
Factor
&&
Cols
==
Factor.lines
&&
is
(
Factor.type
:
Type
)
)
if
(
Lines
> 0 &&
Cols
> 0
)
Meta
Source
See Implementation
mathed
types
matrix
Matrix
aliases
cols
lines
type
constructors
this
functions
castTo
opApply
opBinary
opBinaryRight
opCast
opIndex
opOpAssign
opUnary
set
toString
properties
identity
t
static functions
diag
Processes matrix multiplication with another matrix.