1D Heat Equation Solver 1.0
Computational Methods Assignment 2025
Loading...
Searching...
No Matches
io.hpp
Go to the documentation of this file.
1#pragma once
2/**
3 * @file io.hpp
4 * @brief CSV utilities.
5 */
6#include <string>
7#include <vector>
8
9void save_profile_csv(const std::string& path,
10 const std::vector<double>& x,
11 const std::vector<double>& T);
void save_profile_csv(const std::string &path, const std::vector< double > &x, const std::vector< double > &T)
Save a temperature profile (x, T) to a CSV file.
Definition io.cpp:20