Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

mex-files

Notes on setting up matlab R2007a/b at mathworks. Note that 32 and 64 bit mex-files are different.

Network installation

http://docs.uabgrid.uab.edu/wiki/Matlab_Network_Concurrent_User_Install

Listbox: coloring individual lines

Here's an example for both background and font:

% list contains entires;
for i = 1:length(list)
    list_colored{i} = sprintf( '<html><DIV bgcolor="yellow"><font color="red">%s</font></DIV></html>', list{i} );
end
set(handles.group,'String',list_colored)