Macaulay2 Engine
Loading...
Searching...
No Matches

◆ mat_ZZ_set_entry()

void mat_ZZ_set_entry ( NTL::mat_ZZ * A,
long i,
long j,
mpz_srcptr a )

Definition at line 55 of file ntl-internal.cpp.

56{
57 NTL::ZZ b = ntl_ZZ_from_mpz(a);
58 (*A)(i + 1, j + 1) = b;
59}
NTL::ZZ ntl_ZZ_from_mpz(mpz_srcptr a)

References ntl_ZZ_from_mpz().

Referenced by mutableMatrix_to_NTL_mat_ZZ().