Chapter 1 Vocabulary Flashcards

1
Q

Document Window

A

A window that displays MATLAB files and allows the user to edit or debug them

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Workspace Browser

A

A window that displays the names and values of variables stored in the MATLAB Workspace

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Current Folder Browser

A

A window that displays the names of files in the current directory. If a file is selected in the Current Folder Browser, details about the file will appear in the Details Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Command History Window

A

A window that displays recently used commands, accessed by clicking the up arrow when typing in the Command Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Path Browser

A

A tool to display the MATLAB search path, accessed by clicking the Set Path button

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Help Browser

A

A tool to get help for MATLAB functions, accessed by clicking the Help button

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Command Window

A

A window where the user can type commands and see immediate results

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The Toolstrip

A

A strip across the top of the desktop containing icons to select functions and tools, arranged in tabs and sections of related functions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Figure Window

A

A window that displays a MATLAB plot

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

MATLAB is short for

A

Matrix Laboratory

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

MATLAB has many advantages compared to conventional computer languages for technical problem solving. What is NOT an advantage?

A

Low Cost

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Some disadvantages of MATLAB are

A

Cost
It is an interpreted language, therefore it can execute more slowly than compiled languages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the fundamental unit of data in any MATLAB program?

A

Array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

If a statement is too long to type on a single line, it may be continued in successive lines by typing an ________ at the end of the first line, and then continuing on the next line.

A

Ellipsis

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Instead of typing commands directly in the Command Window, a series of commands can be placed into a file, and the entire file can be executed by typing its name in the Command Window. Such files are called__________ files.

A

Script

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What command will print (in the command window) a list of the variables and arrays in the current workspace?

17
Q

The contents of the current workspace can be examined with the ________ which appears, by default, on the______ hand side of the desktop.

A

GUI-based Workspace Bowser
Right

18
Q

What are the 3 ways to get help in MATLAB?

A

Help Browser
Lookfor command
Help command

19
Q

The contents of the current figure window can be cleared at any time using the ________ command.

A

Clf
(clear the contents of the current figure window)

20
Q

In an event that a script is running an infinite loop, the user can use the _______ command to halt the process and regain control.

21
Q

What happens if you define a variable with the same name as a MATLAB function or command?

A

That function or command becomes inaccessible

22
Q

If the user creates a script or function with the same name as a MATLAB function or command, which command will MATLAB prefer and execute?

A

The user defined script or function

23
Q

MATLAB includes the ______ command to help you find out just which version of a file is being executed, and where it is located. This can be useful in finding file name conflicts.

A

Which command

24
Q

What happens every time a new expression without an equal sign is typed into the command window and evaluated?

A

MATLAB will evaluate it and store the result in a special variable called ans that is overwritten every time a new expression is typed without an equal sign.

25
Does MATLAB provide a predefined value for pi?
Yes. 3.141592….
26
Is there an auto-complete feature in MATLAB? If so, how does it work?
Yes, if a user starts to type a command then presses the tab key, a popup list of recently typed command and MATLAB functions that match the string will be displayed.