chapter 7 Flashcards

1
Q

plot( )

A

represents data graphically

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

line plot

A

connects data points with lines, auto is using the element index as x and the stored value as y

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

plot(x, y, ‘o’)

A

the o makes points visible

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

axis([0, 10, 15, 50])

A

sets x limits (0-10) and y limits (15-50), apply after plot command

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

yyaxis

A

enables dual y axis plotting on left and right sides

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

loglog

A

plots logx and logy

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

semilogy

A

plots log y and linear x

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

semilogx

A

plots log x and linear y

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

stairs

A

creates stair step graph

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

grid

A

adds grid to the graph

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

gtext

A

allows positioning of text with mouse

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

figure(n)

A

makes figure number “n” for current plot

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

hold on

A

allows multiple plots to superimpose on same axis

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

hold off

A

releases current plot and allows new graph to be drawn

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

close(n)

A

closes figure number n

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

subplot(a, b, c)

A

creates a x b matrix of plots with figure c

17
Q

orient

A

specifies orientation and visuals of a graph

18
Q

Line Width

A

adjusts width of line to specifications

19
Q

[x, y] = ginput(nPoints)

A

takes n points from current plot and returns the x and y values in vector form