"contourc" Functions Does Not Accept Inputs of Type Single.

The function "contourc" 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 "contourc" function.
lon = 5:5:50;
lat = 5:5:50;
grid = randi([0 50], 10, 10);
contourValues = 5:5:50;
contours = contourc(single(lon), single(lat), single(grid), single(contourValues));
Error using contourc
Input arguments for contourc must be of type 'double'.

 Accepted Answer

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

More Answers (0)

Categories

Find more on Live Scripts and Functions in Help Center and File Exchange

Products

Release

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!