Re: Graphing a D function : possible?

2022-06-02 Thread harakim via Digitalmars-d-learn
On Thursday, 2 June 2022 at 03:37:13 UTC, z wrote: Is there a quick way of obtaining the graph of D functions like these? ```d T f(T) if (isScalarType!T){} ``` or ```D T[2] f(T, T)if (isScalarType!T){} ``` I know that there are graphing calculators already, but these don't support low level

Re: Graphing a D function : possible?

2022-06-02 Thread Paul Backus via Digitalmars-d-learn
On Thursday, 2 June 2022 at 03:37:13 UTC, z wrote: Is there a quick way of obtaining the graph of D functions like these? ```d T f(T) if (isScalarType!T){} ``` or ```D T[2] f(T, T)if (isScalarType!T){} ``` I know that there are graphing calculators already, but these don't support low level

Graphing a D function : possible?

2022-06-01 Thread z via Digitalmars-d-learn
Is there a quick way of obtaining the graph of D functions like these? ```d T f(T) if (isScalarType!T){} ``` or ```D T[2] f(T, T)if (isScalarType!T){} ``` I know that there are graphing calculators already, but these don't support low level black magic like int <-> float conversions and i'm