shlooky
Member level 2
Hi there!
Probably a very basic question, but I could not google my answer... been trying for days...
I am (SKILL newbie) trying to write an OCEAN script that would read CSV file containing 12 columns of data and display those as waveforms. Everything works just fine, my problem is with the actual plotting using "for" loop... My code returns 12x the following message "*Warning* Wavenil is not a waveform object that can be displayed and will be DELETED automatically."
Obviously, "var1" is not a waveform object...
So, how can I convert string to a waveform object?
Manual plotting of my waveforms works just fine...
I am basically looking for a simple SKILL function name
Thanks!
Probably a very basic question, but I could not google my answer... been trying for days...
I am (SKILL newbie) trying to write an OCEAN script that would read CSV file containing 12 columns of data and display those as waveforms. Everything works just fine, my problem is with the actual plotting using "for" loop... My code returns 12x the following message "*Warning* Wavenil is not a waveform object that can be displayed and will be DELETED automatically."
Obviously, "var1" is not a waveform object...
So, how can I convert string to a waveform object?
Manual plotting of my waveforms works just fine...
I am basically looking for a simple SKILL function name
Thanks!
Code:
for(i 1 12
var1 = stringToSymbol(strcat("NMOS" pcExprToString(i)))
awvPlotWaveform(
win list(var1)
?subwindow 1
?stripNumber list(1)
?expr list("Measured")
?color list("y10")
?lineType list("scatterPlot")
?dataSymbol list(4)
)
)