I Have a matlab script dbEval.m:
function dbEval()
....function implementation
....
end
dbEval();%call this function.
I run this script on the shell with
matlab dbEval.m
Now if I want to pass a argument thru command line execute. How can I do it? and how do I retrieve the argument on my script and use it as argument of my dbEval function?