MATLAB

From PrattWiki

Jump to: navigation, search
MATLAB
Matrix Laboratory Software
Matlab Logo.png
Version R2009a on UNIX
R2010a for download
Download On Unix
OIT for Faculty/Staff
Cost Free on UNIX
Manufacturer MathWorks
Web Page http://www.mathworks.com
Updated 8/10/2010


MATLAB is a MATrix LABoratory program that can be used to load, process, generate, present, and analyze numerical data.

Contents

FAQ

MATLAB gives me the splash screen, then just sits there...

MATLAB on Unix just sits there - I think I created an infinite loop! Or I am running a program that will take a significant fraction of forever to complete...

MATLAB on Windows just sits there - I think I created an infinite loop! Or I am running a program that will take a significant fraction of forever to complete...

How do you even get IN to MATLAB? I have no idea...

How do you type MATLAB code in these pages, and how do you make it pretty?

<source lang="matlab">
%% Post-processing
% take data from AI
[data, time] = getdata(AI);
%% plot data 
c1 = data(:,1); c2 = data(:,2); c3 = data(:,3); c4 = data(:,4);
plot(time, c1, 'b-', time, c2, 'g--', time, c3, 'r-.', time, c4, 'c:')
legend('0', '1', '2', '3', 0)
xlabel('Time (s)'); ylabel('Voltage (V)');
</source>
produces
%% Post-processing
% take data from AI
[data, time] = getdata(AI);
%% plot data 
c1 = data(:,1); c2 = data(:,2); c3 = data(:,3); c4 = data(:,4);
plot(time, c1, 'b-', time, c2, 'g--', time, c3, 'r-.', time, c4, 'c:')
legend('0', '1', '2', '3', 0)
xlabel('Time (s)'); ylabel('Voltage (V)');
See the page linked above for other languages that are parsed.

How do I change colors and fonts?

In the File menu, pick Preferences and, in that window, look three different places:

  1. The Fonts section allows you to change fonts. Make sure to choose a monospaced font.
  2. The Colors section allows you to change most of the colors. Pay careful attention to the sample color block in this window to make sure you can read all the different colors of text.
  3. The Editor/Debugger section has a Display subsection - this is where you can control the color of the current line (the default is not to alter it) as well as the color of a highlighted section (i.e. a segment of code under a %% comment)

How do logical masks work?

What do the line number mean on the CB-68LP card?

How can I use inline functions?

How can I use anonymous functions?

How do I define a function in a text file?

Questions

Post your questions by editing the discussion page of this article. Edit the page, then scroll to the bottom and add a question by putting in the characters *{{Q}}, followed by your question and finally your signature (with four tildes, i.e. ~~~~). Using the {{Q}} will automatically put the page in the category of pages with questions - other editors hoping to help out can then go to that category page to see where the questions are. See the page for Template:Q for details and examples.

External Links

References

Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox