DEBSOURCES
Skip Quicknav
sources / golang-github-alecthomas-chroma-v2 / 2.12.0-1~bpo12%2B1 / lexers / testdata / matlab.actual
12345678910
% a sum function function p = vector_sum(x) p = 0; for k1 = 1:length(x) p = p + x(k1); end end z = 1:10; sum_from_1_to_10 = vector_sum(z)