I created a zeros (n+1 by n+1) matrix. And I want the value 2*i on the row (2 : n)&(column 1:n-1) , where i is from 1 to n-1, how should I get that? Can anyone help me out?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
kingsley
el 19 de Abr. de 2017
I tried this :
n=4;
A=zeros(n+1);
for i=2:n-1
A([2:n,2:n-1])=[2*i]
end
But it didnt work
2 comentarios
Roger Stafford
el 19 de Abr. de 2017
Editada: Roger Stafford
el 19 de Abr. de 2017
Your statement isn’t clear to me. Could you give a specific example of what you want A to be with, say, n = 4.
Respuesta aceptada
Más respuestas (1)
KSSV
el 19 de Abr. de 2017
n = 4 ;
A = zeros(n+1) ;
A(2:n,1:n-1) = repmat(2*(1:n-1),n-1,1) ;
1 comentario
Ver también
Categorías
Más información sobre Computer Vision with Simulink 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!