logspace<T extends SizedNativeType> function
Implementation
VARP logspace<T extends ffi.SizedNativeType>(num start, num stop, {int count = 50, double base = 10.0}) {
final pow = F.cast<T>(linspace<T>(start, stop, count: count));
return F.pow(pow, F.scalar<T>(base));
}