adding vectors: positive single digit values and returning digits of sum as elements of vector
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
KayLynn
el 29 de Oct. de 2013
I am trying to write a function that takes two vectors of positive single digit integer values as its input and return the digits of the sum as elements of a vector.
I have two vectors but am unsure how to start a function that will allow me to perform what is listed in the previous statement. If someonme could please help with me a starting po0int, it would be appreciated.
5 comentarios
Walter Roberson
el 30 de Oct. de 2013
Has not been merged as both versions have Answers.
Respuesta aceptada
Image Analyst
el 30 de Oct. de 2013
Please give an example to show what you want. It could either be
theSum = vector1 + vector2;
like Matt J suggested, or
theSum = sum(vector1) + sum(vector2);
which will work for vectors of different lengths. Or maybe you want to interpolate them to make them equal sizes before summing - we have no idea what you really want. Don't use sum as the name of a variable like you did because sum() is the name of a built in function and you'll disable it if you use the same name for your own functions or variables.
1 comentario
Cedric
el 30 de Oct. de 2013
My guess is that she wants something like an addition the way we do it by hand, with numbers given by digits stored in vectors.
PS: thank you for your comment yesterday. I replied but quite late!
Más respuestas (2)
Walter Roberson
el 30 de Oct. de 2013
The question cannot be answered until you reply to the question posed to you when you posted this previously. See http://www.mathworks.co.uk/matlabcentral/answers/91275#comment_176144
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!