Make specific array from another array elements
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
The problem:
''Write a m.file which is asking to enter array X (integer numbers),which will make a new array Y .Elements of the array Y are sum from even digits of elements array X. If some element of array X is not inteneger,make a comment about error.
For example X = [81, 19, 102, 22, 12, 21] Y = [8, 0, 2, 4, 2, 2]
2 commentaires
Jan
le 19 Sep 2022
This sounds like a homework question. It would not be useful, if the forum solves your homework, so you will not get a solution here. Post, what you have tried so far, and ask a specific question about Matlab. Then you will get assistence for solving the specific problem.
Réponses (1)
Walter Roberson
le 19 Sep 2022
Y = zeros(size(X));
for IndexBackM7 = 1 : numel(Y)
ValueToWorkWIthBackM7 = X(IndexBackM7);
now calculate for ValueToWorkWIthBackM7
Y(idx) = ResultOfCalculationBackM7
end
0 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing 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!