/ concept-collection / jupyterlite-numbl-kernel
Sign in
concept-collection / jupyterlite-numbl-kernel
jupyterlite-numbl-kernel / demo / content / MathX.m
8 lines · 207 BBlameHistoryRaw
1classdef MathX
2 % Static methods are called as Class.method(...) with no instance.
3 methods (Static)
4 function d = hypot3(a, b, c)
5 d = sqrt(a^2 + b^2 + c^2);
6 end
7 end
8end
moveopenescclose