multiplication table in matlab
    35 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    mohamed
 el 1 de Mzo. de 2013
  
    
    
    
    
    Respondida: Akmal
 el 19 de Jun. de 2022
            I want to make the multiplication table using matlab ?
2 comentarios
  leela krishna
 el 30 de Jun. de 2019
				 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 
Respuesta aceptada
  Azzi Abdelmalek
      
      
 el 1 de Mzo. de 2013
        
      Editada: Azzi Abdelmalek
      
      
 el 1 de Mzo. de 2013
  
      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 comentarios
  Azzi Abdelmalek
      
      
 el 10 de Mzo. de 2013
				
      Editada: Azzi Abdelmalek
      
      
 el 10 de Mzo. de 2013
  
			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)
Más respuestas (4)
  Teja Muppirala
    
 el 23 de Mayo de 2013
        N = 10
(1:N)'*(1:N)
2 comentarios
  Morganne Durham
 el 22 de En. de 2018
				To make a matrix for a times table, you need to use a period before the *
   (1:N)'.*(1:N)
  Matt J
      
      
 el 1 de Mzo. de 2013
        As an example, This will generate a times table for integers 1...10
 bsxfun(@times, (1:10).',1:10)
0 comentarios
Ver también
Categorías
				Más información sobre Characters and Strings 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!







