slope-field alternatives and similar packages
Based on the "Web" category.
Alternatively, view slope-field alternatives based on common mentions on social networks and blogs.
-
swagger-petstore
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
servant
Servant is a Haskell DSL for describing, serving, querying, mocking, documenting web applications and more! -
haskell-bitmex-rest
swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition. -
neuron
Future-proof note-taking and publishing based on Zettelkasten (superseded by Emanote: https://github.com/srid/emanote) -
tagsoup
Haskell library for parsing and extracting information from (possibly malformed) HTML/XML documents -
keera-hails-reactive-htmldom
Keera Hails: Haskell on Rails - Reactive Programming Framework for Interactive Haskell applications -
ghcjs-dom
Make Document Object Model (DOM) apps that run in any browser and natively using WebKitGtk
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of slope-field or a related project?
README
slope-field 
I was studying this course on Integration when I encountered slope fields and I found them interesting!
So I thought I would give it a shot and try to write a program to draw slope fields myself! In order to read a mathematical function definition from input, I wrote mathexpr.
Get Started
If you haven't already, install Haskell Platform.
git clone https://github.com/mdibaiee/slope-field
cd slope-field
stack install
slope-field
Examples
Parameters:
- dy/dx: derivative of the function you are trying to visualize
- range: range of numbers to draw
- estimation size: size of
deltax
which is used to draw the slope corresponding to a small point,0.03
is usually a good number, but you might want to try out larger numbers to get a more detailed picture on some examplesdy/dx = x + y range - format: (lower, upper): (-10, 10) estimation size: 0.03
dy/dx =
x * y
range - format: (lower, upper):
(-10, 10)
estimation size:
0.03
dy/dx =
-y
range - format: (lower, upper):
(-10, 10)
estimation size:
0.03
dy/dx =
y/x
range - format: (lower, upper):
(-20, 20)
estimation size:
0.1