Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121361370
MatrixLibrary.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jul 10, 07:17
Size
591 B
Mime Type
text/x-c
Expires
Sat, Jul 12, 07:17 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27252829
Attached To
rLAMMPS lammps
MatrixLibrary.h
View Options
#ifndef MATRIXLIBRARY_H
#define MATRIXLIBRARY_H
#include "DenseMatrix.h"
#include "DenseVector.h"
#include "CloneVector.h"
#include "DiagonalMatrix.h"
#include "SparseMatrix.h"
#include "SparseVector.h"
template
<
typename
T
>
const
SparseMatrix
<
T
>
*
sparse_cast
(
const
Matrix
<
T
>
*
m
)
{
return
dynamic_cast
<
const
SparseMatrix
<
T
>*>
(
m
);
}
template
<
typename
T
>
void
copy_sparse_to_matrix
(
const
SparseMatrix
<
T
>
*
s
,
Matrix
<
T
>
&
m
)
{
m
.
zero
();
TRIPLET
<
T
>
triplet
;
for
(
INDEX
i
=
0
;
i
<
s
->
size
();
i
++
)
{
triplet
=
s
->
get_triplet
(
i
);
m
(
triplet
.
i
,
triplet
.
j
)
=
triplet
.
v
;
}
}
#endif
Event Timeline
Log In to Comment