Tensor_Fill

PURPOSE ^

C/C++ source

SYNOPSIS ^

C/C++ source

DESCRIPTION ^

C/C++ source

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 #include "tensor.h"
0002 void Tensor_Fill(struct Tensor *T, DOUBLE a)
0003 {
0004 int i;
0005 for(i=0;i<(*T).size;i++){
0006    (*T).vals[i]=a;
0007 }
0008 }

Community support and wiki are available on Redmine. Last update: 18-Apr-2019.