Can I construct a matrix multiplying a scalar and a vector?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jaime De La Mota Sanchis
el 11 de Sept. de 2019
Comentada: Jaime De La Mota Sanchis
el 11 de Sept. de 2019
I have a scalar i=3 and a vector j=[4; 5]. I want to generate the matrix k=[3 4; 3 5].
Is there a way to multiply i and j to generate the matrix k?
0 comentarios
Respuesta aceptada
Jan
el 11 de Sept. de 2019
Editada: Jan
el 11 de Sept. de 2019
No, tis is not a standard multiplication. But you can create k based on i and j:
i = 3;
j = [4; 5];
% Solution 1:
k(:, 2) = j;
k(:, 1) = i;
% Solution 2:
k = i .* [1, 0; 1, 0] + j .* [0, 1; 0, 1]; % Auto-expanding, need Matlab >= R2016b
What is the general case? Why do you want a "multiplication"? Which is the problem you want to solve actually?
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!