Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.4.1 - Português

Change language to:
English - Français - 日本語 - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Ajuda Scilab >> Funções Elementares > Integer representation > dec2base

dec2base

Convert decimal to base N number in string

Calling Sequence

str = dec2base(d, base)
str = dec2base(d, base, n)

Arguments

str

matrix of strings corresponding to "base" representation

base

1-by-1 matrix of doubles, positive integer value, the base

d

matrix of doubles, positive integer values

Description

str = dec2base(d, base) converts the nonnegative integer values of d to the specified base base.

d must have a nonnegative integers smaller than 2^52, and base must be an integer between 2 and 36.

The returned argument str is a matrix of strings.

str = dec2base(d, base, n) produces a representation with at least n digits.

Examples

for b = 2:36
 disp( dec2base(666, b) )
end

See Also

  • base2dec — conversão da base b para inteiros
  • bin2dec — conversão de representação binária para inteira
  • oct2dec — conversão de octais para inteiros
  • hex2dec — conversão de representação hexadecimal para inteiros
  • dec2bin — representação binária
  • dec2oct — representação octal de inteiros
  • dec2hex — representação hexadecimal de inteiros

History

VersionDescription
5.4.0 This function was added in Scilab 5.4.0
Report an issue
<< oct2dec Integer representation Matrix manipulation >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Tue Apr 02 17:37:04 CEST 2013