Textbooks.elsevier.com - tools for all your teaching needs.

5) Write a function to calculate the volume and surface area of a hollow cylinder. It receives as input arguments the radius of the cylinder base and the height of the cylinder. The volume is given by ( r2 h, and the surface area is 2 ( r h. vol_surfarea.m. function [vol surfarea] = vol_surfarea(rad, ht) % Calculates the volume and surface area ... ................
................