From: mat001 on
How to find non zero element in Matrix

I have a matrix A with lots of Zero and I have to take average of only that element which is non zero.
From: mat001 on
"mat001 " <priya.biomath(a)yahoo.co.in> wrote in message <hsrcdc$i8m$1(a)fred.mathworks.com>...
> How to find non zero element in Matrix
>
> I have a matrix A with lots of Zero and I have to take average of only that element which is non zero.

Will it work like that

average = sum(nonzeros(A(:)))/numel(nonzeros(A(:)))
From: Sean on
"mat001 " <priya.biomath(a)yahoo.co.in> wrote in message <hsrcdc$i8m$1(a)fred.mathworks.com>...
> How to find non zero element in Matrix
>
> I have a matrix A with lots of Zero and I have to take average of only that element which is non zero.

>>a = rand(10).*(rand(10)>.5);
>>b = a(a~=0);
>>mean(b)

or
>>a(a==0) = nan;
>>nanmean(a);
From: ImageAnalyst on
It should work, but you can replace
numel(nonzeros(A(:)))
with
nnz(A)
From: Matt J on
"mat001 " <priya.biomath(a)yahoo.co.in> wrote in message <hsrcmo$8is$1(a)fred.mathworks.com>...
> "mat001 " <priya.biomath(a)yahoo.co.in> wrote in message <hsrcdc$i8m$1(a)fred.mathworks.com>...
> > How to find non zero element in Matrix
> >
> > I have a matrix A with lots of Zero and I have to take average of only that element which is non zero.
>
> Will it work like that
>
> average = sum(nonzeros(A(:)))/numel(nonzeros(A(:)))

This can be replaced simply with

mean(nonzeros(A));