Writing a Script (which keeps running until no number is provided to convert) that asks for Temperature in degrees Fahrenheit and Computes the Equivalent Temperature in degrees Celsius. [Hint: Function is empty is useful]
C = isempty(A) returns logical 1 (true) if C is an empty array and logical 0 (false) otherwise. An empty array has at least one dimension of size zero, for example, 0-by-0 or 0-by-5
clc;
clear all;
close all;
f=[];
while (isempty(f))
f=input('enter temperature in fah');
end;
c=5*(f-32)./9
disp(c);