#include <memory.h>#include "scicos_block.h"Include dependency graph for cstblk4.c:

Go to the source code of this file.
Functions | |
| void | cstblk4 (scicos_block *block, int flag) |
| void cstblk4 | ( | scicos_block * | block, | |
| int | flag | |||
| ) |
Definition at line 4 of file cstblk4.c.
References memcpy(), scicos_block::nrpar, scicos_block::outptr, and scicos_block::rpar.
00005 { 00006 /* Copyright INRIA 00007 00008 Scicos block simulator 00009 output a vector of constants out(i)=rpar(i) 00010 rpar(1:nrpar) : given constants */ 00011 00012 memcpy(block->outptr[0],block->rpar,block->nrpar*sizeof(double)); 00013 }
Here is the call graph for this function:

1.5.1