How to print numbers 1 to 4 and add all numbers to a one array?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tensi Heshan
el 23 de Ag. de 2021
Comentada: Tensi Heshan
el 24 de Ag. de 2021
results
1
2
3
4
a= [1 2 3 4];
2 comentarios
Respuesta aceptada
Awais Saeed
el 23 de Ag. de 2021
Perhaps this is what you want
for col =1:1:4
disp(col)
a(col) = col;
end
disp(['a = ',num2str(a)])
6 comentarios
Awais Saeed
el 24 de Ag. de 2021
Because you are not storing anything. I am assuming you want to store 'q' values
f = -6:0.001:6;
n = -6:6;
xt = (-2<=n & n<=2);
output = [];
for t = -6:0.001:6
fun = @(f)exp(j.*2.*pi.*f.*t);
q = integral(@(f) fun(f),-2,2);
output = [output q]; % store q values
end
Más respuestas (1)
Ver también
Categorías
Más información sobre Matrix Indexing 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!