What does the tilde (~) in the following code mean?

32 views (last 30 days)
function T= TempStefBoltz_3(~)
sig = 5.67e-8; %W/m^2K^4
E =6000; %W/m^2
x=E/sig;
t=nthroot(x,4); %K
T=round(t); %K
end

Accepted Answer

James Tursa
James Tursa on 19 Sep 2017
Edited: James Tursa on 20 Sep 2017
It's syntax that means to ignore the input argument, if there is one. That is, you can call the function with no input arguments or one input argument (ignored).

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!