Trying to make a function for summing up 3 numbers. Explaination below
20 次查看(过去 30 天)
显示 更早的评论
Hello, I am trying to make a function that can split any type of number ( I am using Getdigits for that ) and sum the digits. I want the user to be able to input any digit number in a type of [x y z] and then be able to find if any of the numbers are odd. Unfortunately I am new to Matlab and I am not really able to make it work. Can anyone help me please. Thank you
0 个评论
采纳的回答
Youssef Khmou
2015-3-29
the following answer is an alternative approach without using 'getdigits' function :
function [C,y]=sum3(x)
h=int2str(x);
N=length(h);
for n=1:N
C(n)=str2num(h(n));
end
y=sum(C);
更多回答(2 个)
Stephen23
2015-3-29
编辑:Stephen23
2015-3-30
Although an answer has already been accepted, that answer shows very poor use of MATLAB by solving this using nested loops and multiple calls to the rather slow str2num within each loop iteration. A much simpler, neater and faster solution would be to vectorize the whole code and use basic MATLAB practices, something like this:
>> A = [123,4,567890];
>> B = int2str(A(:))-48;
>> B(B<0) = 0
B =
0 0 0 1 2 3
0 0 0 0 0 4
5 6 7 8 9 0
>> sum(B,2)
ans =
6
4
35
This will work for vectors of any length (i.e. A can have any number of values in it), it will be faster that a loop-based solution (especially if A has more values in it), and it uses fewer lines of code too!
2 个评论
Stephen23
2015-3-30
编辑:Stephen23
2015-3-30
MATLAB is a high-level language, which means that it has faster and neater ways of solving basic arithmetic than using loops: loops are the second choice in MATLAB, code vectorization is the preferred choice! Loops are what are needed in low-level languages like C, etc.
The concept is very simple: many basic arithmetic operations and MATLAB functions operate on complete matrices at once, without requiring any loops. This is called vectorization, and it is much faster, neater code, and it looks more like the mathematics as it would be written.
If you want to learn MATLAB, then do not learn bad programming habits first: instead learn the recommended practices and your code will be much improved.
Youssef Khmou
2015-3-30
编辑:Youssef Khmou
2015-3-30
This function works for a vector of length n, with second logical output according to the description :
function [Logical,y]=sumn(x)
N=length(x);
for iter=1:N
h=int2str(x(iter));
NN=length(h);
C=zeros(1,NN);
for n=1:NN
C(n)=str2num(h(n));
end
S=sum(C);
y(iter)=S;
if mod(S,2)==0
Logical(iter)=true;
else
Logical(iter)=false;
end
end
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!