Trying to make a function for summing up 3 numbers. Explaination below
조회 수: 3 (최근 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!