Is there a way to get a matlab tip everytime I open Matlab or on a daily basis and how can it be customized ?

2 views (last 30 days)
Is there a way to get a matlab tip everytime I open Matlab and how can it be customized ?

Answers (1)

Joseph Cheng
Joseph Cheng on 27 Aug 2014
the matlabrc.m file can be edited see http://www.mathworks.com/help/matlab/ref/matlabrc.html. upon startup matlab will run this according to the link. you can add a section (make a backup just in case) to display your own GUI you write. I was unable to find a FEX submission where they would supply a tip so you will have to write or find your own. Perhaps a function that does
load FullFunctionlist.mat
randomFunction = RullFunctionlist(randi(length(FullFunctionlist),1,1));
eval(['help ' randFunc])
where randfunc is FullFunctionList.mat is a user generated list of all matlab functions.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!