You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f = Fun(discrete_signal, Chebyshev(Interval(t1[1],t1[end])))
f1 = Fun(Chebyshev(Interval(t1[1],t1[end])), coefficients(f)[1:5])
to approximate the function discrete_signal with a Chebyshev function using 5 coefficients. That is a waste of cpu cycles, first to calculate thousends of coefficients just to through most of them away. Please add an option to specify the max number of coefficients.
The text was updated successfully, but these errors were encountered:
I currently use this code:
to approximate the function discrete_signal with a Chebyshev function using 5 coefficients. That is a waste of cpu cycles, first to calculate thousends of coefficients just to through most of them away. Please add an option to specify the max number of coefficients.
The text was updated successfully, but these errors were encountered: