xschem raw values now returns full precision, no more 8 digit rounding, as this is undesirable for transient noise sims
This commit is contained in:
parent
5eea0728c7
commit
538d3bf2ad
|
|
@ -3990,7 +3990,7 @@ int xschem(ClientData clientdata, Tcl_Interp *interp, int argc, const char * arg
|
||||||
np = raw->npoints[dataset];
|
np = raw->npoints[dataset];
|
||||||
Tcl_ResetResult(interp);
|
Tcl_ResetResult(interp);
|
||||||
for(p = 0; p < np; p++) {
|
for(p = 0; p < np; p++) {
|
||||||
sprintf(n, "%.8g", get_raw_value(dataset, idx, p));
|
sprintf(n, "%.16g", get_raw_value(dataset, idx, p));
|
||||||
Tcl_AppendResult(interp, n, " ", NULL);
|
Tcl_AppendResult(interp, n, " ", NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue