cwMtx.h: Fixed calc. of ele_count().
This commit is contained in:
parent
df975da715
commit
ad6c41267f
2
cwMtx.h
2
cwMtx.h
@ -705,7 +705,7 @@ namespace cw
|
|||||||
// Return the count of elements in the matrix
|
// Return the count of elements in the matrix
|
||||||
template< typename T >
|
template< typename T >
|
||||||
unsigned ele_count( const struct mtx_str<T>& x )
|
unsigned ele_count( const struct mtx_str<T>& x )
|
||||||
{ return vop::cumprod(x.dimV,x.dimN); }
|
{ return vop::prod(x.dimV,x.dimN); }
|
||||||
|
|
||||||
|
|
||||||
template< typename T >
|
template< typename T >
|
||||||
|
Loading…
Reference in New Issue
Block a user