Hello,
While reading about sum( ) I found out a few issues mainly with the documentation in the category of Statistics on version 11.5.0
sum( )
On syntax and examples
- There is no reference for
sum(A, dim) even though it works as expected.
On See also
- There is a reference for itself
sum
std( )
On syntax and examples
- There is no reference to
std(A, dim) even though it works as expected.
- There are references for
std(A, normalization) but it also works as std(A, dim-1, normalization). I include dim-1 because is zero indexed inside math.evaluate( ).
variance( )
On syntax and examples
- There is no reference to
variance(A, dim) even though it works as expected.
- There are references for
variance(A, normalization) but it also works as variance(A, dim-1, normalization). I include dim-1 because is zero indexed inside math.evaluate( ).
While doing these tests I got the errors that median(A, dim) and prod(A, dim) are not yet supported.
My main concern was finding that sum(A, dim) works but I hope the rest of the report can be useful.
To Reproduce
These were found inside the equation parser and the website documentation.
Hello,
While reading about
sum( )I found out a few issues mainly with the documentation in the category of Statistics on version 11.5.0sum( )On syntax and examples
sum(A, dim)even though it works as expected.On See also
sumstd( )On syntax and examples
std(A, dim)even though it works as expected.std(A, normalization)but it also works asstd(A, dim-1, normalization). I includedim-1because is zero indexed insidemath.evaluate( ).variance( )On syntax and examples
variance(A, dim)even though it works as expected.variance(A, normalization)but it also works asvariance(A, dim-1, normalization). I includedim-1because is zero indexed insidemath.evaluate( ).While doing these tests I got the errors that
median(A, dim)andprod(A, dim)are not yet supported.My main concern was finding that
sum(A, dim)works but I hope the rest of the report can be useful.To Reproduce
These were found inside the equation parser and the website documentation.