Sha256: 5b3f7d189b2c496116d427ee1a3ab2dc580b4cc5a3d100a6bab77e381c213afd

Contents?: true

Size: 872 Bytes

Versions: 6

Compression:

Stored size: 872 Bytes

Contents

# Dydx
It always happens you want to differentiate with ruby. right?

Dydx will eliminate this. Like this

```
( d/dx(e ^ :x) ).to_s
=> "( e ^ x )"

$y = cos(:x)
(dy/dx).to_s
=> "( - sin( x ) )"

# pretermit '.to_s'

d/dx(log(:x))
=> "( 1 / x )"

d/dx(:x^:n)
=> "( n * ( x ^ ( n - 1 ) ) )"


d/dx(:x^2)
=> "( 2 * x )"

```

(That's wonderful!!!!! But, I feel there is no meaning ... )

## Installation

Add this line to your application's Gemfile:

    gem 'dydx'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install dydx

## Usage

    include Dydx

## Contributing

1. Fork it ( https://github.com/[my-github-username]/dydx/fork )
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
dydx-0.0.7 README.md
dydx-0.0.6 README.md
dydx-0.0.5 README.md
dydx-0.0.4 README.md
dydx-0.0.3 README.md
dydx-0.0.2 README.md