set author after program details

This commit is contained in:
Krishna Vedala 2020-06-19 18:19:20 -04:00
parent 2ad1b72f6c
commit 5111c2cf59
No known key found for this signature in database
GPG Key ID: BA19ACF8FC8792F7

View File

@ -3,10 +3,11 @@
* \brief Linear regression example using [Ordinary least
* squares](https://en.wikipedia.org/wiki/Ordinary_least_squares)
*
* \author [Krishna Vedala](https://github.com/kvedala)
* Program that gets the number of data samples and number of features per
* sample along with output per sample. It applies OLS regression to compute
* the regression output for additional test data samples.
*
* \author [Krishna Vedala](https://github.com/kvedala)
*/
#include <iomanip> // for print formatting
#include <iostream>