matlab 2.2 Flashcards
1
Q
‘r’ permission
A
open file for reading
2
Q
‘w’ permission
A
open file for writing
3
Q
‘r+’ permission
A
open (do not create) file for reading and writing
4
Q
debugging code
A
set breaking point
5
Q
user defined function file
A
filename is the name of the funtion .m
6
Q
do you have to define input and output for user defined functions?
A
no
7
Q
function call
A
out = funHandle(input)
8
Q
while vs for loop
A
while loop operates as long as statement is true, for operates for a certain number of executions