Matlab - Exercise 15
Given the following function header:
function [x, y] = calcem(a, b, c)
Which of the following function calls would be valid — and why?
- [num, val] = calcem(4, 11, 2)
- result = calcem(3, 5, 7)
Given the following function header:
Which of the following function calls would be valid — and why?