1 / 29

Chapter 6

MATLAB Programs. Chapter 6. Types of Functions . Categories of functions: functions that calculate and return one value functions that calculate and return more than one value functions that just accomplish a task, such as printing, without returning any values They are different in:

tharding
Download Presentation

Chapter 6

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. MATLAB Programs Chapter 6 Attaway MATLAB 5E

  2. Types of Functions • Categories of functions: • functions that calculate and return one value • functions that calculate and return more than one value • functions that just accomplish a task, such as printing, without returning any values • They are different in: • the way they are called • what the function header looks like • All are stored in code files with the extension .m

  3. Generic Function Definition • All function definitions consist of: • The function header • The reserved word function • Output arguments and the assignment operator (only if the function returns value(s) • Function name • Input arguments • A block comment describing the function • The body of the function which includes all statements, including putting values in all output arguments, if there are any • end

  4. Functions that Return >1 Value • General form of a function that returns more than one value; it has multiple output arguments in the header • The output arguments are separated by commas functionname.m function [output arguments] = functionname(input arguments) % Comment describing the function Statements here; these must include putting values in all of the output arguments listed in the header end

  5. Calling the function • Since the function is returning multiple values through the output arguments, the function call should be in an assignment statement with multiple variables in a vector on the left-hand side (the same as the number of output arguments in the function header) in order to capture all of them • Otherwise, some will be lost

  6. Example Function Call • For example, if the function header is: function [x,y,z] = fnname(a,b) • This indicates that the function is returning 3 things, so a call to the function might be (assuming a and b are numbers): [g,h,t] = fnname(11, 4.3); • Or using the same names as the output arguments (it doesn’t matter since the workspace is not shared): [x,y,z] = fnname(11, 4.3); • This function call would only get the first value returned: result = fnname(11, 4.3);

  7. A function tworan that returns two random integers, each in the range from 10 to 20 function [ranx, rany] = tworan ranx = randi([10,20]); rany = randi([10,20]); end tworan.m Example Function call: [x, y] = tworan

  8. A function tworanb that receives two integer arguments a and b and returns two random integers, each in the range from a to b function [ranx, rany] = tworanb(a,b) ranx = randi([a,b]); rany = randi([a,b]); end tworanb.m Example Function call: [x, y] = tworanb(5, 50)

  9. Functions that do not return anything • A function that does not return anything has no output arguments in the function header, nor does it have the assignment operator • The statements in the body would typically display or plot information from the input arguments functionname.m function functionname(input arguments) % Comment describing the function statements here end

  10. Calling a function with no output • Since no value is returned, the call to such a function is a statement • For example, if this is the function header: function fnname(x,y) • A call to the function might look like this: fnname(x,y) • The following would NOT be a valid call; since the function is not returning anything, there is no value to assign: result = fnname(x,y); % Invalid!

  11. A function prttworan that prints two random integers, each in the range from 10 to 20 function prttworan fprintf(‘One is %d\n’, randi([10,20])) fprintf(‘The other is %d\n’, randi([10,20])) end prttworan.m Example Function call: prttworan

  12. A function prttworanb that receives two integer arguments a and b and prints two random integers, each in the range from a to b function prttworanb(a,b) fprintf(‘One is %d\n’, randi([a,b])) fprintf(‘The other is %d\n’, randi([a,b])) end prttworanb.m Function call: prttworanb(5,50)

  13. Notes on Functions • You do not always have to pass input arguments to a function. If you do not, you can have (both in the function header and in the function call) empty (), or you can just leave them out • The function header and function call have to match up: • the name has to be the same • the number of input arguments must be the same • the number of variables in the left-hand side of the assignment should be the same as the number of output arguments • if there are no output arguments, the function call is a statement • Functions that return values do not normally print them, also – that is left to the calling function/script

  14. Program Organization • In a modular program, every task is implemented in a function • In MATLAB, a program generally consists of a script (the “main program”) that calls functions to accomplish the tasks • At the very least, most MATLAB programs consist of a script that calls functions to • get the input • calculate results • display the results • Sometimes a main function is used instead of a script

  15. Local functions • When one function calls another, the two functions can be stored in the same code file with the same name as the main function main.m main function header main function body includes call to local function end local function header local function body end • The local function can only be called by the main function

  16. Example: Modular outline • In a modular program, a script calls functions • Given the following script (where x,y,z are 3 things) [x,y,z] = getinputs; result = calcstuff(x,y,z); displayit(x,y,z, result) • With just that information, we can write the corresponding function headers (not the definitions, just the headers)

  17. Example function headers • function [x,y,z] = getinputs • function result = calcstuff(x,y,z) • function displayit(x,y,z, result)

  18. Variable Scope • The scope of any variable is the workspace in which it is valid. • The workspace created in the Command Window is called the baseworkspace. • Scripts also create variables in the base workspace • That means that variables created in the Command Window can be used in scripts and vice versa • However, that is very poor programming style • Variables defined in functions, however, are local to the function – functions use their own workspaces

  19. Persistent Variables • Persistent variables are used only within functions • For “normal” variables in functions, memory is allocated when the function is invoked and then released when the function stops executing • With persistent variables, the memory stays allocated and the value remains in that location • The variable has to be declared as persistent • Normally, an if statement is used to check to see if it is empty and if so initializes to a value • A counter is a good example: counts how many times the function is called • clear functions will reset all persistent variables • clearfnname will reset persistent variables in fnname

  20. % This script demonstrates persistent variables % The first function has a variable "count" fprintf('This is what happens with a "normal" variable:\n') func1 func1 % The second fn has a persistent variable "count" fprintf('\nThis is what happens with a persistent variable:\n') func2 func2 function func1 % This fn increments a variable "count" count = 0; count = count + 1; fprintf('The value of count is %d\n',count) end Persistent Count Example persistex.m func1.m func2.m function func2 % This fn increments a persistent variable "count" persistent count if isempty(count) count = 0; end count = count + 1; fprintf('The value of count is %d\n',count) end

  21. Types of Errors • Syntax errors: mistakes in language e.g. missing quote at the end of a string • Run-time (or execution-time) errors: errors that are found during execution of a script or function, e.g. referring to an element in a vector that does not exist • Logical errors: mistakes in reasoning e.g. using an expression like (0 < x < 10)

  22. Debugging Methods • There are several methods that can be used to find errors: • Tracing: using the echo statement which will show all statements as executed • Using MATLAB’s Editor/Debugger • Set breakpoints so values of variables/expressions can be examined at various points • dbstop sets a breakpoint • dbcont continues execution • dbquit quits debug mode

  23. Function Stubs • Function stubs can be used to prevent bugs in the first place • The procedure is: • Put the “main program” script in place with all function calls • Create code files for all functions, which consist solely of the correct function header and a “dummy” body that mimics what the function will eventually do (e.g. return one or more values, or just print something) • Then, one by one fill in the actual function bodies

  24. Function Stub Example The lump sum S to be paid when interest on a loan is compounded annually is given by S = P(1 + i)n where P is the principal invested, i is the interest rate and n is the number of years. Write a program that will plot the amount S as it increases through the years from 1 to n. The main script will call a function to prompt the user for the number of years (and error-check to make sure that the user enters a positive integer). The script will then call a function that will plot S for years 1 through n. It will use .05 for the interest rate and $10,000 for P. For now we will write just the script and function stubs.

  25. Script and function stubs % Plots the amount of money in an account % after n years at interest rate i with a % principal p invested % Call a function to prompt for n n = promptyear; % Call a function to plot plots(n, .05, 10000) Note that the function stubs are somewhat nonsensical – BUT – they mimic what the functions will eventually do. The promptyear function will eventually return an integer, and the plots function will eventually plot something. Using the values of n, i, and p ensures they were passed correctly. function outn = promptyear outn = 33; end function plots(n, i, p) plot(n, i*p) end

  26. Live Scripts • Live scripts are created using the Live Editor • Can embed equations, images, formatted text, and hyperlinks • Equations can be created using LaTex notation or using equation editors • Plots are shown in the live script instead of in separate Figure Windows • Functions can be in live scripts • Live scripts are stored in .mlx files • Can be converted to PDF or HTML format

  27. Code Cells and Publishing • Code in scripts can be broken into sections called code cells • You can run one code cell at a time • Code cells are created with comments that start with two %% • Code in code cells can also be published in HTML format with plots embedded and with formatted equations • Do this from the Publish tab in the Editor

  28. Common Pitfalls • Not matching up arguments in a function call with the input arguments in a function header. • Not having enough variables in an assignment statement to store all of the values returned by a function through the output arguments. • Attempting to call a function that does not return a value from an assignment statement, or from an output statement. • Forgetting that persistent variables are updated every time the function in which they are declared is called – whether from a script or from the Command Window.

  29. Programming Style Guidelines • If arguments are passed to a function in the function call, do not replace these values by using input in the function itself.  • Functions that calculate and return value(s) will not normally also print them.  • Functions should not normally be longer than one page in length • Do not declare variables in the Command Window and then use them in a script, or vice versa. • Pass all values to be used in functions to input arguments in the functions.

More Related