affbe5f5创建于 2025年3月25日历史提交
#ifndef ngspice_POLYFIT_H
#define ngspice_POLYFIT_H

#include "ngspice/bool.h"

bool ft_polyfit(double *xdata, double *ydata, double *result,
		int degree, double *scratch);

#endif