Does anybody know?

7 vues (au cours des 30 derniers jours)
Ben Davis
Ben Davis le 5 Mar 2012
A line of code i could use for my function so when i insert a vector such as [1 2 3 4], the function i am making see's it as the value 1234(one thousand, two hundred and thirty four) instead? Thanks :)
  1 commentaire
Andrei Bobrov
Andrei Bobrov le 6 Mar 2012
c = [1 2 3 4]
out = c*10.^(numel(c)-1:-1:0).'

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 5 Mar 2012
str2double(sprintf('%d',V))
or
str2double(char(V+'0'))
which should be more efficient.
Warning: if your vectors might have 15 to 19 elements, then there would be additional work involved in order to get the correct integer. From 19 elements up, only an approximation of the integer can be produced.
  9 commentaires
Walter Roberson
Walter Roberson le 7 Mar 2012
If you need to handle more than 19 elements, then you are going to have to write a whole new function based on very different computation principles. I think it likely that it was intended that you use those computation principles right from the beginning.
Your algorithm will need to implement "long division" or the equivalent.
Ben Davis
Ben Davis le 7 Mar 2012
hoooray -_-

Connectez-vous pour commenter.

Plus de réponses (1)

the cyclist
the cyclist le 5 Mar 2012
x = [1 2 3 4];
str2num(num2str(x')')
  1 commentaire
Ben Davis
Ben Davis le 5 Mar 2012
Sorry i deleted my previous reply, what i meant to say is that this only works for when x and y are the same size vector (x=[2 2 2 2], y=[1 1 1 1]. Sorry for being a pain, but do you know what i could do to my code so that it will work even if x and y do not contain the same amount of digits inside of them. My functions plans on dividing x by y.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by