Skip to content
Snippets Groups Projects
Commit 12b26dfa authored by Wuttke, Joachim's avatar Wuttke, Joachim Committed by Wuttke, Joachim
Browse files

corr header for 'cp'

parent e3a42e8e
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ string COlo::info_line( int j ) const
{
const int LEN=15;
char wrd[LEN];
snprintf( wrd, LEN, "%-2i%c ", j, V[j]->frozen ? '/' : ' ' );
snprintf( wrd, LEN, "%2i%c ", j, V[j]->frozen ? '/' : ' ' );
string out = wrd;
out += V[j]->info_line();
return out;
......@@ -593,11 +593,11 @@ vector<string> COlc::info_settings() const
string COlc::info_table_header() const
{
string ret = "";
string ret = "j ";
for ( int iz=0; iz<nZ(); iz++ )
ret += str( format( " z%i " ) % iz );
ret += str( format( "z%i " ) % iz );
for ( int ip=0; ip<nP; ip++ )
ret += str( format( " p%i " ) % ip );
ret += str( format( "p%i " ) % ip );
ret += "oc chi^2 1-R^2";
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment