-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathplot.h
More file actions
27 lines (16 loc) · 757 Bytes
/
plot.h
File metadata and controls
27 lines (16 loc) · 757 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
/**********************************************************************
This file is part of the Quantum Computation Language QCL.
(c) Copyright by Bernhard Oemer <oemer@tph.tuwien.ac.at>, 1998
This program comes without any warranty; without even the implied
warranty of merchantability or fitness for any particular purpose.
This program is free software under the terms of the
GNU General Public Licence (GPL) version 2 or higher
************************************************************************/
#ifndef PLOT_H
#define PLOT_H 1
#pragma interface
#include "types.h"
void plot_state(QuHeap *qh);
void plot_spectrum(quState *q,string lab="");
void plot_spectrum2(quState *qx,quState *qy,string labx="",string laby="");
#endif