arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
96 Bytes
#include "complex_impl.h"
double cabs(double complex z)
{
return hypot(creal(z), cimag(z));
}