how can i convert an integer to an array in this function?

14 vues (au cours des 30 derniers jours)
Zaza
Zaza le 31 Mar 2013
function a=get_array_num(n)
end
requirments:
1.no loops,if,recurion or logical operatos
2.no num2str or str2num
3.length_of(n)=number of digits in "n" (help function)
i think maybe logspace is useful here...but how?
  8 commentaires
Zaza
Zaza le 1 Avr 2013
sorry again
suppose n>0 with no leading zeros
Jan
Jan le 2 Avr 2013
For length_of() the log10 function would be much smarter.

Connectez-vous pour commenter.

Réponses (1)

Image Analyst
Image Analyst le 31 Mar 2013
How about
a = zeros(n);
or
a = n * ones(1, 10);
or something similar? There is an infinite variety of arrays you could make that would full those requirements, though requirement #3 is not well explained at all (no idea what it even means).
  16 commentaires
Zaza
Zaza le 2 Avr 2013
may i have a clue how to do it with the colon operator?
Jan
Jan le 2 Avr 2013
@Zaza: It consumed some time and energy to bring you to post an explicit example. We get some parts of the problem distributed to the question and over several comments. Therefore an efficient answer is impossible.
Please edit the original question and insert all available information. Then show us, what you have tried so far, because of course we are not going to solve your homework: you couldn't submit it anymore without cheating!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Function Creation 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