OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
BI_cvvsum.c File Reference
#include "Bdef.h"

Go to the source code of this file.

Functions

void BI_cvvsum (Int N, char *vec1, char *vec2)

Function Documentation

◆ BI_cvvsum()

void BI_cvvsum ( Int N,
char * vec1,
char * vec2 )

Definition at line 2 of file BI_cvvsum.c.

3{
4 float *v1=(float*)vec1, *v2=(float*)vec2;
5 Int k;
6 N *=2;
7 for (k=0; k < N; k++) v1[k] += v2[k];
8}
#define Int
Definition Bconfig.h:22
#define N