Модуль 4. Лекция 14 - Школа системного моделирования
Автор
Соавторы
// Sums two vectors
#include <stdint.h>
#include "vector_four.h"
void vector_4_add(double *v1,double *v2,double *result,int32_t len)
{
int32_t i;
for (i=0;i<len;i++)
{
result[i] = v1[i] + v2[i];
}
}