I have a matlab vector like s=[1 2 3 4]' and iterate over every element:
for i=1:length(s)
cal_function(s(i));
end
what is the correct mathematic notation of the length-Function?
I found some papers which write the length as $|s|$ but I don't know if this is correct as I have never seen this before.