Problem 1262. Convert elements in numeric array into different class

Write a function that converts elements in a numeric array into a different class. Example:

a = [1:5]; % class: double
b = convertto(a,'uint32');
b =
         1  2  3  4  5
class(b)
  ans =
  uint32

Solution Stats

54.39% Correct | 45.61% Incorrect
Last Solution submitted on Feb 01, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers58

Suggested Problems

More from this Author2

Problem Tags

Community Treasure Hunt

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

Start Hunting!