mirror of
https://git.code.sf.net/p/ngspice/ngspice
synced 2026-09-01 18:27:19 +02:00
running in parallel on a multi-core machine (12 min execution time on a i9 9900, ngspice compiled with gcc, debug mode enabled. Linux with Valgrind and Parallel are required.
11 lines
320 B
Plaintext
11 lines
320 B
Plaintext
variables case sensitivity in echo cmd
|
|
.control
|
|
set NameList = ( plus125C plus25C minus55C )
|
|
let j = 2
|
|
*setcs thisName = $NameList[$&j]
|
|
set thisName = $NameList[3]
|
|
echo "thisName: $thisName"
|
|
echo "thisname: $thisname"
|
|
.endc
|
|
.end
|