Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alejoriosm04/numerisketch
A web-based application to visualize and graph various numerical methods. Project for the sixth-semester course "Numerical Analysis" (ST0256) taught at EAFIT University by Prof. Julian Rendon.
https://github.com/alejoriosm04/numerisketch
Last synced: 4 days ago
JSON representation
A web-based application to visualize and graph various numerical methods. Project for the sixth-semester course "Numerical Analysis" (ST0256) taught at EAFIT University by Prof. Julian Rendon.
- Host: GitHub
- URL: https://github.com/alejoriosm04/numerisketch
- Owner: alejoriosm04
- Created: 2024-08-28T01:10:23.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-11-15T15:57:08.000Z (2 months ago)
- Last Synced: 2024-11-15T16:39:23.418Z (2 months ago)
- Language: HTML
- Homepage: https://numerisketch.fra1.zeabur.app
- Size: 4.36 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NumeriSketch
**NumeriSketch** is a web-based application designed to visualize and graph various numerical methods covered in the course "Numerical Analysis" (ST0256) taught at EAFIT University by Prof. Julian Rendon. This project provides an intuitive and interactive way to explore complex mathematical concepts
## Table of Contents
- [Installation](#installation)
- [Setup](#setup)## Installation
1. **Clone the repository:**
```bash
git clone https://github.com/alejoriosm04/NumeriSketch
cd numerisketch
```2. **Create virtual environment:**
```bash
python3 -m venv venv
```3. **Activate virtual environment:**
On Windows:
```bash
venv\Scripts\activate
```On macOS and Linux:
```bash
source venv/bin/activate
```4. **Install dependencies:**
```bash
pip install -r requirements.txt
```## Setup
1. **Create the database and apply migrations:**
```bash
python manage.py migrate
```2. **Run the development server:**
```bash
python manage.py runserver
```3. **Open your browser and go to `http://http://127.0.0.1:8000/` to access NumeriSketch.**