In Matlab, There is a point after a variable what does this expression mean?

Viewed 182

I am looking into a octave/matlab code and find the following:

        deltaT = 1;                        % sampling period for data
        ......
        R = rcValues(2:2:end)/1000; % convert these also
        C = rcValues(3:2:end)*1000; % convert kF to F
        RCfact = exp(-deltaT./(R.*C));

What does the point (.) mean in -deltaT. and R. in this mathematical expression? Thanks

1 Answers
Related