flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2023 Jean Kieffer

    This file is part of FLINT.

    FLINT is free software: you can redistribute it and/or modify it under
    the terms of the GNU Lesser General Public License (LGPL) as published
    by the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.  See <https://www.gnu.org/licenses/>.
*/

#include "arb_mat.h"
#include "acb.h"
#include "acb_mat.h"

void
acb_mat_set_real_imag(acb_mat_t mat, const arb_mat_t re, const arb_mat_t im)
{
    slong i, j;

    for (i = 0; i < acb_mat_nrows(re); i++)
    {
        for (j = 0; j < acb_mat_ncols(re); j++)
        {
            acb_set_arb_arb(acb_mat_entry(mat, i, j),
                            arb_mat_entry(re, i, j), arb_mat_entry(im, i, j));
        }
    }
}