How to create a matrix B=[bij]=[max(i,j)] belongs to class of rectangular matrices
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Farooq Aamir
el 9 de Feb. de 2018
Respondida: Christine Tobler
el 12 de Feb. de 2018
Please answer me
0 comentarios
Respuesta aceptada
Más respuestas (1)
Christine Tobler
el 12 de Feb. de 2018
Focusing on the max(i, j) part, you could use
i = 3;
j = 4;
B = max((1:i)', (1:j));
0 comentarios
Ver también
Categorías
Más información sobre Symbolic Math Toolbox 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!