Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93792909
wr_ipx.c
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
Sun, Dec 1, 13:28
Size
9 KB
Mime Type
text/x-c
Expires
Tue, Dec 3, 13:28 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22703692
Attached To
R1448 Lenstool-HPC
wr_ipx.c
View Options
/***************************************************************/
/* */
/* FUNCTION: write_data */
/* */
/* PURPOSE: writes data in a file */
/* */
/* INPUT: file = output file */
/* data = pointer to data */
/* dim = dimension of the data */
/* size = number of data in each dimension */
/* type = type of data (int,double,double) */
/* mode = stroring mode of data (txt,bin) */
/* nature = nature of data (real,complex) */
/* comments = file comments */
/* */
/* VERSION: 1.0 May 1992 */
/* */
/* AUTHOR: Karim BOUYOUCEF */
/* */
/***************************************************************/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "lt.h"
/**************************************************************/
void
wr_ipx
(
char
*
file
,
long
int
data
,
int
dim
,
int
*
size
,
char
*
type
,
char
*
mode
,
char
*
nature
,
char
*
comments
,
double
xmin
,
double
xmax
,
double
ymin
,
double
ymax
)
{
/**************** declarations **************************/
struct
int_cplx
{
int
x
;
int
y
;};
struct
double_cplx
{
double
x
;
double
y
;};
FILE
*
fp
;
register
int
i
,
j
;
auto
int
nb
;
auto
int
*
vector_i_real
,
**
square_i_real
;
auto
double
*
vector_f_real
,
**
square_f_real
;
auto
double
*
vector_d_real
,
**
square_d_real
;
auto
struct
int_cplx
*
vector_i_cplx
,
**
square_i_cplx
;
auto
struct
double_cplx
*
vector_f_cplx
,
**
square_f_cplx
;
auto
struct
double_cplx
*
vector_d_cplx
,
**
square_d_cplx
;
/***************** verification du format du fichier *****************/
fp
=
fopen
(
file
,
"w"
);
if
(
fp
!=
NULL
)
{
fprintf
(
fp
,
"%d
\t
%lf %lf %lf %lf
\n
"
,
dim
,
xmin
,
xmax
,
ymin
,
ymax
);
for
(
i
=
0
;
i
<
dim
;
i
++
)
fprintf
(
fp
,
"%d
\n
"
,
size
[
i
]);
fprintf
(
fp
,
"%s %s %s
\n
"
,
type
,
mode
,
nature
);
nb
=
strlen
(
comments
);
if
(
isspace
(
comments
[
nb
-
1
])
!=
0
)
comments
[
nb
-
1
]
=
'\0'
;
fputs
(
comments
,
fp
);
fprintf
(
fp
,
"
\n
"
);
}
else
{
fprintf
(
stderr
,
"
\n\n
FATAL ERROR writing file %s
\n
"
,
file
);
exit
(
-
1
);
}
if
((
strcmp
(
type
,
"int"
)
!=
0
)
&&
(
strcmp
(
type
,
"double"
)
!=
0
)
&&
(
strcmp
(
type
,
"double"
)))
{
fprintf
(
stderr
,
"
\n\n
FATAL ERROR file %s must be of type %s
\n
"
,
file
,
type
);
exit
(
-
1
);
}
if
((
strcmp
(
mode
,
"bin"
)
!=
0
)
&&
(
strcmp
(
mode
,
"txt"
)
!=
0
))
{
fprintf
(
stderr
,
"
\n\n
FATAL ERROR file %s must be of mode bin or txt
\n
"
,
file
);
exit
(
-
1
);
}
if
((
strcmp
(
nature
,
"real"
)
!=
0
)
&&
(
strcmp
(
nature
,
"complex"
)
!=
0
))
{
fprintf
(
stderr
,
"
\n\n
FATAL ERROR file %s must be of nature real or complex
\n
"
,
file
);
exit
(
-
1
);
}
/******************** Ecriture dans le fichier ***************************/
switch
(
dim
)
{
case
1
:
/**************** signal 1D ***********************************/
if
(
strcmp
(
mode
,
"bin"
)
==
0
)
{
if
((
strcmp
(
type
,
"int"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
vector_i_real
=
(
int
*
)
data
;
fwrite
(
vector_i_real
,
sizeof
(
int
),
size
[
0
],
fp
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
vector_f_real
=
(
double
*
)
data
;
fwrite
(
vector_f_real
,
sizeof
(
double
),
size
[
0
],
fp
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
vector_d_real
=
(
double
*
)
data
;
fwrite
(
vector_d_real
,
sizeof
(
double
),
size
[
0
],
fp
);
}
if
((
strcmp
(
type
,
"int"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
vector_i_cplx
=
(
struct
int_cplx
*
)
data
;
fwrite
(
vector_i_cplx
,
sizeof
(
struct
int_cplx
),
size
[
0
],
fp
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
vector_f_cplx
=
(
struct
double_cplx
*
)
data
;
fwrite
(
vector_f_cplx
,
sizeof
(
struct
double_cplx
),
size
[
0
],
fp
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
vector_d_cplx
=
(
struct
double_cplx
*
)
data
;
fwrite
(
vector_d_cplx
,
sizeof
(
struct
double_cplx
),
size
[
0
],
fp
);
}
}
else
if
(
strcmp
(
mode
,
"txt"
)
==
0
)
{
if
((
strcmp
(
type
,
"int"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
vector_i_real
=
(
int
*
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fprintf
(
fp
,
"%d
\n
"
,
vector_i_real
[
i
]);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
vector_f_real
=
(
double
*
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fprintf
(
fp
,
"%lf
\n
"
,
vector_f_real
[
i
]);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
vector_d_real
=
(
double
*
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fprintf
(
fp
,
"%lf
\n
"
,
vector_d_real
[
i
]);
}
if
((
strcmp
(
type
,
"int"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
vector_i_cplx
=
(
struct
int_cplx
*
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fprintf
(
fp
,
"%d %d
\n
"
,
vector_i_cplx
[
i
].
x
,
vector_i_cplx
[
i
].
y
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
vector_f_cplx
=
(
struct
double_cplx
*
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fprintf
(
fp
,
"%lf %lf
\n
"
,
vector_f_cplx
[
i
].
x
,
vector_f_cplx
[
i
].
y
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
vector_d_cplx
=
(
struct
double_cplx
*
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fprintf
(
fp
,
"%lf %lf
\n
"
,
vector_d_cplx
[
i
].
x
,
vector_d_cplx
[
i
].
y
);
}
}
if
(
strcmp
(
mode
,
"bin"
)
==
0
)
fprintf
(
fp
,
"
\n
"
);
fclose
(
fp
);
break
;
case
2
:
/************ image 2D ************************/
if
(
strcmp
(
mode
,
"bin"
)
==
0
)
{
if
((
strcmp
(
type
,
"int"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
square_i_real
=
(
int
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fwrite
(
square_i_real
[
i
],
sizeof
(
int
),
size
[
1
],
fp
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
square_f_real
=
(
double
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fwrite
(
square_f_real
[
i
],
sizeof
(
double
),
size
[
1
],
fp
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
square_d_real
=
(
double
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fwrite
(
square_d_real
[
i
],
sizeof
(
double
),
size
[
1
],
fp
);
}
if
((
strcmp
(
type
,
"int"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
square_i_cplx
=
(
struct
int_cplx
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fwrite
(
square_i_cplx
[
i
],
sizeof
(
struct
int_cplx
),
size
[
1
],
fp
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
square_f_cplx
=
(
struct
double_cplx
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fwrite
(
square_f_cplx
[
i
],
sizeof
(
struct
double_cplx
),
size
[
1
],
fp
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
square_d_cplx
=
(
struct
double_cplx
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
fwrite
(
square_d_cplx
[
i
],
sizeof
(
struct
double_cplx
),
size
[
1
],
fp
);
}
}
else
if
(
strcmp
(
mode
,
"txt"
)
==
0
)
{
if
((
strcmp
(
type
,
"int"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
square_i_real
=
(
int
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
for
(
j
=
0
;
j
<
size
[
1
];
j
++
)
fprintf
(
fp
,
"%d
\n
"
,
square_i_real
[
i
][
j
]);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
square_f_real
=
(
double
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
for
(
j
=
0
;
j
<
size
[
1
];
j
++
)
fprintf
(
fp
,
"%lf
\n
"
,
square_f_real
[
i
][
j
]);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"real"
)
==
0
))
{
square_d_real
=
(
double
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
for
(
j
=
0
;
j
<
size
[
1
];
j
++
)
fprintf
(
fp
,
"%lf
\n
"
,
square_d_real
[
i
][
j
]);
}
if
((
strcmp
(
type
,
"int"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
square_i_cplx
=
(
struct
int_cplx
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
for
(
j
=
0
;
j
<
size
[
1
];
j
++
)
fprintf
(
fp
,
"%d %d
\n
"
,
square_i_cplx
[
i
][
j
].
x
,
square_i_cplx
[
i
][
j
].
y
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
square_f_cplx
=
(
struct
double_cplx
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
for
(
j
=
0
;
j
<
size
[
1
];
j
++
)
fprintf
(
fp
,
"%lf %lf
\n
"
,
square_f_cplx
[
i
][
j
].
x
,
square_f_cplx
[
i
][
j
].
y
);
}
if
((
strcmp
(
type
,
"double"
)
==
0
)
&&
(
strcmp
(
nature
,
"complex"
)
==
0
))
{
square_d_cplx
=
(
struct
double_cplx
**
)
data
;
for
(
i
=
0
;
i
<
size
[
0
];
i
++
)
for
(
j
=
0
;
j
<
size
[
1
];
j
++
)
fprintf
(
fp
,
"%lf %lf
\n
"
,
square_d_cplx
[
i
][
j
].
x
,
square_d_cplx
[
i
][
j
].
y
);
}
}
if
(
strcmp
(
mode
,
"bin"
)
==
0
)
fprintf
(
fp
,
"
\n
"
);
fclose
(
fp
);
break
;
default
:
/*************** dimension > 2 ***************/
fprintf
(
stderr
,
"
\n
FATAL ERROR data must be of dimension < 3
\n
"
);
exit
(
-
1
);
break
;
}
}
Event Timeline
Log In to Comment