#include "./elements.h"
#include "../io/Print/Print.h"
#include <iomanip>
Go to the source code of this file.
|
void | printarray (IssmPDouble *array, int lines, int cols) |
|
void | printsparsity (IssmPDouble *array, int lines, int cols) |
|
void | printarray (int *array, int lines, int cols) |
|
void | printarray_matlab (const char *filename, int *array, int lines, int cols) |
|
void | printarray (bool *array, int lines, int cols) |
|
void | printbinary (int n) |
|
◆ printarray() [1/3]
void printarray |
( |
IssmPDouble * |
array, |
|
|
int |
lines, |
|
|
int |
cols |
|
) |
| |
Definition at line 6 of file PrintArrays.cpp.
8 for(
int i=0;i<lines;i++){
10 for(
int j=0;j<cols;j++)
_printf_(
" " << setw(11) << setprecision (5) << array[i*cols+j]);
◆ printsparsity()
void printsparsity |
( |
IssmPDouble * |
array, |
|
|
int |
lines, |
|
|
int |
cols |
|
) |
| |
Definition at line 26 of file PrintArrays.cpp.
29 for(
int i=0;i<lines;i++){
32 for(
int j=0;j<cols;j++){
33 if(array[i*cols+j]!=0.0){
39 _printf_(
" ] "<<i<<
" => "<<count <<
"\n");
◆ printarray() [2/3]
void printarray |
( |
int * |
array, |
|
|
int |
lines, |
|
|
int |
cols |
|
) |
| |
Definition at line 43 of file PrintArrays.cpp.
45 for(
int i=0;i<lines;i++){
47 for(
int j=0;j<cols;j++)
_printf_(
" " << setw(11) << setprecision (5) << array[i*cols+j]);
◆ printarray_matlab()
void printarray_matlab |
( |
const char * |
filename, |
|
|
int * |
array, |
|
|
int |
lines, |
|
|
int |
cols |
|
) |
| |
Definition at line 52 of file PrintArrays.cpp.
53 FILE *f = fopen(filename,
"w");
54 fprintf(f,
"%% Matrix of size %ix%i\n",lines,cols);
56 fprintf(f,
"A=[...\n");
57 for(
int i=0;i<lines;i++){
58 for(
int j=0;j<cols;j++) fprintf(f,
" %i",array[i*cols+j]);
◆ printarray() [3/3]
void printarray |
( |
bool * |
array, |
|
|
int |
lines, |
|
|
int |
cols |
|
) |
| |
Definition at line 64 of file PrintArrays.cpp.
66 for(
int i=0;i<lines;i++){
68 for(
int j=0;j<cols;j++){
◆ printbinary()
void printbinary |
( |
int |
n | ) |
|
Definition at line 76 of file PrintArrays.cpp.
77 unsigned int i=1L<<(
sizeof(n)*8-1);