https://github.com/AlexandreMercierAubin/AdaptiveRigidification2022
Tip revision: 6207aed1ab8e0701a17e8642a5c5bf761e3bec1c authored by Alexandre Mercier Aubin on 14 July 2023, 16:40:31 UTC
Update README.md
Update README.md
Tip revision: 6207aed
iif.m
function out = iif(cond, a, b)
%IIF implements a ternary operator
if cond
out = a;
else
out = b;
end