Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96789392
al_sq_point.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
Mon, Dec 30, 21:12
Size
1 KB
Mime Type
text/x-c
Expires
Wed, Jan 1, 21:12 (2 d)
Engine
blob
Format
Raw Data
Handle
23212593
Attached To
R1448 Lenstool-HPC
al_sq_point.c
View Options
/**********************************************************/
/* */
/* FUNCTION: alloc_square_point */
/* */
/* PURPOSE: Allocates a square of points in memory */
/* */
/* INPUT: nbr_lin = number of lines */
/* nbr_col = number of columns */
/* */
/* RETURN: square = pointer to matrix of points */
/* (NULL if memory allocation failure) */
/* */
/* VERSION: 1.1 March 1992 */
/* */
/* AUTHOR: JP KNEIB */
/* */
/**********************************************************/
#include <stdlib.h>
#include "structure.h"
struct point **al_sq_point(int nbr_lin, int nbr_col)
{
struct point **square;
register int i, j;
square = (struct point **) malloc((unsigned) nbr_lin
*sizeof(struct point *));
if (square != 0)
{
for (i = 0; i < nbr_lin; i++)
{
square[i] = (struct point *)malloc((unsigned) nbr_col
* sizeof(struct point ));
if (square[i] == 0) square = 0;
}
}
for (i = 0; i < nbr_lin; i++)
for (j = 0; j < nbr_col; j++)
square[i][j].x = square[i][j].y = 0.0;
return( square);
}
Event Timeline
Log In to Comment