Borrar filtros
Borrar filtros

how to make a variable as equal input over 30 sections

2 visualizaciones (últimos 30 días)
segun
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);

Respuesta aceptada

Azzi Abdelmalek
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);

Más respuestas (1)

Mischa Kim
Mischa Kim el 21 de Abr. de 2014
Segun, do you mean
z = linspace(0,0.5,30)

Categorías

Más información sobre Get Started with MATLAB 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!

Translated by