Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I count non-zero entries in a vetor matrix

Status
Not open for further replies.

frogger79

Structural
Nov 6, 2009
1
0
0
US
I have a vector matrix with 20 entries. If I use the length(x)= ## comand it counts out the number of possible entires in my vector but I need it to only count the non-zero entries. I'm not very good with mathcad so does anyone have any suggestions?

I've attached and example of what I have but someone before me wrote it so I don't understand how it works or what it's doing so therefore I can't duplicate it for a different vector were some of the entries are negative.
 
Replies continue below

Recommended for you

You need to count them by inspection, i.e., build a subroutine that examines every number in the vector and adds to a counter that first is initialized to zero if and only if the current number is other than zero, then once examined all numbers produce the final status of the counter as output. Ensure that your tolerance identifies well what for you is a zero, otherwise you'll get wrong values by your criteria.
 
frogger79,
just re-read what you were looking for; i.e. non-zeros...

To do this you need to change the 'n' in the (n vn) term within the loop to 'length(Space)-n' and then you'll have the number of non-zero terms in your data set.

Uploading MathCad died for some reason, hence the long-hand version shown in above paragraph...sorry!
 
Status
Not open for further replies.
Back
Top