"contourc" Functions Does Not Accept Inputs of Type Single.
1 view (last 30 days)
Show older comments
MathWorks Support Team
on 7 Aug 2019
Answered: MathWorks Support Team
on 9 Aug 2019
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
MathWorks Support Team
on 7 Aug 2019
One workaround is to cast the variables of type single into type double.
0 Comments
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!