how to make a variable as equal input over 30 sections
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
segun
el 21 de Abr. de 2014
Respondida: Azzi Abdelmalek
el 21 de Abr. de 2014
f = 100;
z = 0.5 ;% how to make it as equal inputs over 30 sections
b = 2; c = 4;
Y = f*b*c*z;
disp(Y);
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 21 de Abr. de 2014
f = 100;
z = 0.5*ones(1,30)
b = 2;
c = 4;
Y = f*b*c*z;
disp(Y);
0 comentarios
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!