This function finds an acoustic variable in an Echoview file by name and returns the variable pointer.

EVAcoVarNameFinder(EVFile, acoVarName)

Arguments

EVFile

An Echoview file COM object

acoVarName

The name of an acoustic variable in the Echoview file

Value

a list object with two elements. $EVVar: An Echoview acoustic variable object, and $msg: message for processing log.

References

http://support.echoview.com/WebHelp/Echoview.htm/

See also

Examples

# NOT RUN {
EVAppObj <- COMCreate('EchoviewCom.EvApplication')
EVFile <- EVOpenFile(EVAppObj,'~~/KAOS/KAOStemplate.EV')$EVFile
varObj <- EVAcoVarNameFinder(EVFile, "120 7x7 convolution")$EVVar
# }