MATLAB: “scatteredInterpolant” Function Does Not Accept Inputs of Type Single.

argumentscastcastingdatainputMATLABprecisiontype

The function "scatteredInterpolant" does not accept inputs of type single. Is there any existing workaround?
The follow code block produces an error when passing variables of type single as input into the "scatteredInterpolant" function.
x = (1:10)';
y = randi([1,10], 10,1);
z = (11:20)';
F = scatteredInterpolant(single(y), single(x), single(z), 'linear', 'linear');
Error using scatteredInterpolant
The input points must be a double array.

Best Answer

One workaround is to cast the variables of type single into type double.