Problem 52472. Vector to Decimal
Given an integer vector
,
return its decimal representation
as a character array.
% Examples
v = 7
x = '7'
%
v = [4 2]
x = '42'
%
v = [0 7]
x = '7'
%
v = [3 12]
x = '42'
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers5
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15764 Solvers
-
Find the peak 3n+1 sequence value
2563 Solvers
-
Put two time series onto the same time basis
345 Solvers
-
Longest run of consecutive numbers
6392 Solvers
-
727 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!