Calibration chart scene.
More...
#include <iostream>
#include <cmath>
#include <deque>
#include <QWidget>
#include <QGraphicsView>
#include <QRectF>
Go to the source code of this file.
|
| double | calculateR2Value (double a, double b, vector< double > xvalues, vector< double > yvalues) |
| | Calculate the coefficient of determination R^2. More...
|
| |
| double | calculateLOD (double a, vector< double > xvalues, vector< double > yvalues) |
| | Calculate limit of detection. More...
|
| |
| double | calculateLOQ (double a, vector< double > xvalues, vector< double > yvalues) |
| | Calculate limit of quantitation. More...
|
| |
◆ calculateLOD()
| double calculateLOD |
( |
double |
a, |
|
|
vector< double > |
xvalues, |
|
|
vector< double > |
yvalues |
|
) |
| |
Calculate limit of detection.
- Parameters
-
| a | a |
| xvalues | x coordinates of points |
| yvalues | y coordinates of points |
- Return values
-
◆ calculateLOQ()
| double calculateLOQ |
( |
double |
a, |
|
|
vector< double > |
xvalues, |
|
|
vector< double > |
yvalues |
|
) |
| |
Calculate limit of quantitation.
- Parameters
-
| a | a |
| xvalues | x coordinates of points |
| yvalues | y coordinates of points |
- Return values
-
| double | limit of quantitation |
◆ calculateR2Value()
| double calculateR2Value |
( |
double |
a, |
|
|
double |
b, |
|
|
vector< double > |
xvalues, |
|
|
vector< double > |
yvalues |
|
) |
| |
Calculate the coefficient of determination R^2.
- Parameters
-
| a | a |
| b | b |
| xvalues | x coordinates of points |
| yvalues | y coordinates of points |
- Return values
-