This commit is contained in:
2018-04-17 12:05:48 +02:00
parent 14edc0e745
commit 58a1260003
428 changed files with 41350 additions and 477 deletions
+19
View File
@@ -0,0 +1,19 @@
///////////////////////////////////////////////////////////////////////////////////////////////////
// Processing and plotting scan data.
///////////////////////////////////////////////////////////////////////////////////////////////////
ao1.write(0.0)
scan1= lscan(ao1, [ai1,ai2,wf1], 0, 40, 40, 0.01, false)
scan2= lscan(ao1, [ai1,ai2,wf1], 0, 40, 40, 0.01, false)
result=[]
for (var i=0; i<scan1.records.length; i++){
result.push(scan1.records[i].values[0]+scan2.records[i].values[0])
}
plot(result)
print (result
)