This repository contains lab assignments for the Computational Methods in Science and Technology course. The course covers fundamental numerical algorithms and their properties, such as:
- conditioning,
- accuracy,
- stability,
in the context of computer arithmetic.
Labs are implemented in Rust and Julia.
📂 computational methods
│── 📂 lab1
│ ├── rust
│ ├── julia
│── 📂 lab2
│ ├── rust
│ ├── julia
│── ...
│── README.md
Each directory contains source code for the respective programming language.
To run the code, you need:
- Rust (recommended:
latest stable) - Julia (recommended:
latest stable)
Additionally, install cargo for Rust and Pkg for Julia package management.
- Install Rust via rustup.
- Navigate to the lab directory:
cd lab1 - Build and run:
cargo run
- Download and install Julia.
- Navigate to the lab directory:
cd lab1 - Run the script:
julia main.jl
- Kacperon – (https://github.com/Kacperon)
This project is released under the MIT License – see LICENSE for details.