Re: Graphing

2023-07-01 Thread nbdusr via Digitalmars-d-learn
On Saturday, 1 July 2023 at 01:00:46 UTC, anonymouse wrote: How would I go about graphing time series data (specifically, candles, moving averages, etc) in D and dynamically updating such charts? Thanks, --anonymouse https://github.com/epezent/implot And C bindings: https://github.com

Re: Graphing

2023-07-01 Thread Sergey via Digitalmars-d-learn
On Saturday, 1 July 2023 at 01:00:46 UTC, anonymouse wrote: How would I go about graphing time series data (specifically, candles, moving averages, etc) in D and dynamically updating such charts? Thanks, --anonymouse For TS you can use http://mir-algorithm.libmir.org/mir_series.html

Graphing

2023-06-30 Thread anonymouse via Digitalmars-d-learn
How would I go about graphing time series data (specifically, candles, moving averages, etc) in D and dynamically updating such charts? Thanks, --anonymouse

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 a

Re: Is there a graphing library for D?

2013-10-14 Thread Agnew Daniel
I know I am too late, as you know best thing always delay. So visit KoolChart to find best chart library.

Is there a graphing library for D?

2012-07-17 Thread dcoder
I'm looking for a graphing library for D. Preferrably, something that uses Qt, but it doesn't have to. I am plotting sonar data, and I need to plot it 'live' so... I need something that is: 1. simple to use. I just want to graph x,y data. 2. ability to scale the display. 3. displaying more

Re: Is there a graphing library for D?

2012-07-17 Thread cal
On Tuesday, 17 July 2012 at 17:42:49 UTC, dcoder wrote: I'm looking for a graphing library for D. Preferrably, something that uses Qt, but it doesn't have to. I am plotting sonar data, and I need to plot it 'live' so... I need something that is: 1. simple to use. I just want to graph x,y

Re: Is there a graphing library for D?

2012-07-17 Thread Jordi Sayol
Al 17/07/12 19:53, En/na cal ha escrit: On Tuesday, 17 July 2012 at 17:42:49 UTC, dcoder wrote: I'm looking for a graphing library for D. Preferrably, something that uses Qt, but it doesn't have to. I am plotting sonar data, and I need to plot it 'live' so... I need something that is: 1