필터 지우기
필터 지우기

The greatest common divisor

조회 수: 1 (최근 30일)
Kentman
Kentman 2014년 10월 15일
댓글: Kentman 2014년 10월 15일
Hello,
I just created function for greatest common divisor of two numbers. I want now to do the same for a whole matrix, that means for more than two numbers. But I don't know the idea, i was just confused how to write the program.
The original function was NSD, so i tried to build another one named NSD1 and call the original NSD inside it:
  • _function [value]=NSD1(A)
while i<=size(A,2)
val=NSD(A(i),A(i-1));
end
end_ *
and this is of course wrong, i thought of some tricks which are quite stupid. Can you help me?

채택된 답변

Sean de Wolski
Sean de Wolski 2014년 10월 15일
Use a for loop over the elements in the matrix
for ii = 1:numel(A)
b(ii) = existing_gcd_algorithm(A(ii),c)
end
  댓글 수: 1
Kentman
Kentman 2014년 10월 15일
what do you mean by c?.. can you tell more of the pricniple of this method?

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by