Hello, world!
Jan. 01, 2022
… There’s a long-held tradition in the programming world that printing a Hello world!
message to the screen as your first program in a new language will bring you good luck.1
Welcome
Hello world, this is my first Jekyll blog post.
I hope you like it!
$e^{i\pi}+1=0$
1
2
3
f = lambda x: x[0] ** 2 + x[1] ** 2 + x[2] ** 2 - 1.0
g = lambda x: 2 * x[0] ** 2 + x[1] ** 2 - 4 * x[2]
h = lambda x: 3 * x[0] ** 2 - 4 * x[1] ** 2 + x[2] ** 2
1
2
3
4
5
6
7
8
9
10
function output1 = CustomRmoutliers(x)
% x: timetable
% output1: timetable, removed outliers
tt = diff(x.Variables);
[~, breakpoints] = rmoutliers(tt, 'median');
x(breakpoints, :) = [];
output1 = x;
end
References