What does the tilde (~) in the following code mean?
32 views (last 30 days)
Show older comments
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
0 Comments
Accepted Answer
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).
0 Comments
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!