app.volgraphfun(volatility, name, object_type, chosen_date);
Change the above lines to
app.volgraphfun(~, volatility, name, object_type, chosen_date);
Since function seems to be defined for 5 arguments
app.volgraphfun(volatility, name, object_type, chosen_date);
Change the above lines to
app.volgraphfun(~, volatility, name, object_type, chosen_date);
Since function seems to be defined for 5 arguments
Ok. Then volgraphfun seems to be subfunction of funfour instead of component function. So, instead of
app.volgraphfun(volatility, name, object_type, chosen_date);
Call it just using its name as below
volgraphfun(volatility, name, object_type, chosen_date);
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!