-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
31 lines (26 loc) · 870 Bytes
/
Program.cs
File metadata and controls
31 lines (26 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Graficador
{
class Program
{
static void Main(string[] args)
{
double[] xs = { 0.0, 1.0, 2.0, 3.0, 4.0 };
double[] ys = { 3.34, 3.29, 2.5, 2.25, 1, 8 };
double[] xz = { 0.0, 1.0, 2.0, 3.0, 4.0 };
double[] yz = { 3.47, 2.73, 2.8, 2.32, 1.8 };
double[] xc = { 0.0, 1.0, 2.0, 3.0, 4.0 };
double[] yc = { 3.4, 3.25, 2.75, 2.25, 1.82 };
Graficador graficador = new Graficador();
graficador.AgregarSerie("Left", xs, ys);
graficador.AgregarSerie("Right", xz, yz);
graficador.AgregarSerie("Center", xc, yc);
graficador.GuardarGrafica();
//Console.ReadKey();
}
}
}