Revision b9d40510b04e23174dc618b8b31953294ffb3050 authored by richard defazio on 19 July 2021, 13:38:38 UTC, committed by richard defazio on 19 July 2021, 13:38:38 UTC
Merge AGG VBW Regions into master

See merge request um-mip/coding-project!2
2 parent s ba44c6a + 9befa28
Raw File
notpassive.ipf
#pragma rtGlobals=3		// Use modern global access method and strict wave access.
///////////////////////////////////////////////
//
// access to passive analysis via label
//  :: use if label doesn't contain "pass"
//
///////////////////////////////////////////////
function notpassive(newlabel) //cb_LPpassive(ctrlname,checked): checkboxControl
string newlabel
string plabel = newlabel
string holder=""
holder = getEveryTraceByKey(pLabel)
WAVE/T mywave = $holder
string all = "" //retanalwaveS()
variable i=0,nitems=numpnts(mywave)
do
	all+=mywave[i]+";"
	i+=1
while(i<nitems)
//if(checked)
	getLPpassive(all)
//endif
end
back to top