multiplication table in matlab
조회 수: 82 (최근 30일)
이전 댓글 표시
I want to make the multiplication table using matlab ?
댓글 수: 2
leela krishna
2019년 6월 30일
the output is the multiplication table of any number
clc;
clear all;
n=input('Enter an integer:');
i=1;
while(i<=10)
fprintf('%d*%d=%d \n',n,i,n*i);
i=i+1;
end
채택된 답변
Azzi Abdelmalek
2013년 3월 1일
편집: Azzi Abdelmalek
2013년 3월 1일
x=(1:9)'
a=repmat(x,1,9)
b=a'
c=bsxfun(@times,x,x')
out=arrayfun(@(x,y,z) [num2str(x) 'x' num2str(y) '=' num2str(z)],a,b,c,'un',0)
댓글 수: 3
Azzi Abdelmalek
2013년 3월 10일
편집: Azzi Abdelmalek
2013년 3월 10일
Look at this example:
a=[2 4 8]
%I want to do some operation to each number of a
out(1)=a(1)*100+cos(a(1))
out(2)=a(2)*100+cos(a(2))
out(3)=a(3)*100+cos(a(3))
%This can be done with arrayfun
out=arrayfun(@(x) x*100+cos(x),a)
추가 답변 (4개)
Teja Muppirala
2013년 5월 23일
N = 10
(1:N)'*(1:N)
댓글 수: 2
Morganne Durham
2018년 1월 22일
To make a matrix for a times table, you need to use a period before the *
(1:N)'.*(1:N)
Matt J
2013년 3월 1일
As an example, This will generate a times table for integers 1...10
bsxfun(@times, (1:10).',1:10)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!