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

Answers (1)

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

Tags

Asked:

on 27 Aug 2014

Answered:

on 27 Aug 2014

Community Treasure Hunt

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

Start Hunting!