cleanup
This commit is contained in:
parent
3527937086
commit
f0bb14524b
1 changed files with 1 additions and 1 deletions
|
|
@ -360,7 +360,7 @@ pub fn Mat(
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Matrix - Vector multiplicatino: Mat * Vec
|
/// Matrix * Vector multiplication
|
||||||
pub inline fn mulVec(a: *const Matrix, b: *const ColVec) ColVec {
|
pub inline fn mulVec(a: *const Matrix, b: *const ColVec) ColVec {
|
||||||
var result = [_]ColVec.T{0}**ColVec.n;
|
var result = [_]ColVec.T{0}**ColVec.n;
|
||||||
inline for (0..Matrix.rows) |row| {
|
inline for (0..Matrix.rows) |row| {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue