Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94112581
plotdata.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Dec 4, 00:35
Size
375 B
Mime Type
text/x-c
Expires
Fri, Dec 6, 00:35 (2 d)
Engine
blob
Format
Raw Data
Handle
22738025
Attached To
rSYMKIT symkit
plotdata.h
View Options
#ifndef PLOTDATA_H
#define PLOTDATA_H
/*
* Structure for data plotting storage
*/
//represente tout point d'un graphe de type (préimage, image)
template<typename T>
struct plot_data
{
plot_data(const T& args, double img)
: args(args), img(img) {}
T args;
double img;
};
//Pour un graphe 2D
typedef plot_data<double> Point2D;
#endif // PLOTDATA_H
Event Timeline
Log In to Comment