Plotly.cpp 0.1.0
A C++ plotting library for expressive, interactive, real-time & streaming data visualization
Loading...
Searching...
No Matches
linspace.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
13auto linspace(double a, double b, int n) -> std::vector<double>;
auto linspace(double a, double b, int n) -> std::vector< double >
Create a linearly spaced vector of values between two endpoints.
Definition linspace.cpp:4