Sparse Matrix
This is a discussion on Sparse Matrix within the Computer Science & IT Engineering forums, part of the CE : Technical Discussions category; Hi
Can any one tell me how to represent a Sparse Matrix using arrays.
and also how to add two ...
-
18th November 2008 05:26 PM #1
Sparse Matrix
Hi
Can any one tell me how to represent a Sparse Matrix using arrays.
and also how to add two sparse matrices.
-
-
19th November 2008 11:35 AM #2
-
20th November 2008 12:22 AM #3
Re: Sparse Matrix
Code:
//Addition
k=n2;
for(i=0;i<n1;i++)
{
flag=0;
for(j=0;j<n2;j++)
{
if( a[i][0] == b[j][0] && a[i][1]==b[j][1] )
{
flag=1;
break;
}
}
if( flag==1)
b[j][2]=b[j][2] + a[i][2];
else
{
b[k][0]=a[i][0];
b[k][1]=a[i][1];
b[k][2]=a[i][2];
b[k][0]=b[i][0];
b[k][1]=b[i][1];
b[k][2]=b[i][2];
k++;
}
}
//result of addition is stored in b
This is just a logic.I haven't compiled the code.So expect errors in it 
Let me know if it works.
IF YOU CAN'T Convince THEM ... CONFUSE THEM ... 
mail me at : komputergeek[at]crazyengineers[dot]net
visit my website :
http://www.techbrisk.com
-
20th November 2008 08:53 PM #4
Re: Sparse Matrix
just want to add ... the purpose of sparse matrix is 2 save memory and it is used when you have few information is a big space. So to preserve the memory we use sparse matrix
-
21st November 2008 07:08 PM #5
Re: Sparse Matrix
ok fine I understood what it is.
LinkBacks (?)
-
8th December 2008, 05:35 PM
-
18th November 2008, 06:21 PM
Similar Threads
-
By CE-InFocus in forum CE - InFocus
Replies: 0
Last Post: 19th September 2008, 02:26 PM
-
By sahana in forum Computer Science & IT Engineering
Replies: 4
Last Post: 19th March 2008, 12:20 AM
-
By matrix in forum CE - Introductions
Replies: 4
Last Post: 2nd July 2007, 01:04 AM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules