- Fixed NB indexing

- Fixed an issue with setbin generated time binnings
This commit is contained in:
koennecke
2009-06-30 06:43:23 +00:00
parent 78b2832cbb
commit e076a00fde
8 changed files with 269 additions and 14 deletions

2
scan.c
View File

@ -1764,7 +1764,7 @@ int ScanWrapper(SConnection * pCon, SicsInterp * pSics, void *pData,
/* format them */
sprintf(pPtr, "scan.%s = ", ScanVarName(pVar));
for (i = 0; i < self->iNP; i++) {
sprintf(pItem, "{%12.3f} ", fData[i]);
sprintf(pItem, "{%12.4f} ", fData[i]);
strcat(pPtr, pItem);
}
SCWrite(pCon, pPtr, eValue);