MATLAB: What is the meaning of [0.0;-1.5] in the following lines

interpolationpde

Tcenter = interpolateTemperature(result,[0.0;-1.5],1:numel(tlist));
Touter = interpolateTemperature(result,[0.2;-1.5],1:numel(tlist));
What does it mean by [0.0;-1.5]?

Best Answer

[0.0;-1.5] is a column vector with the two values 0.0 and -1.5. Mathematically, it looks like this: