how to make a variable as equal input over 30 sections
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
segun
le 21 Avr 2014
Réponse apportée : Azzi Abdelmalek
le 21 Avr 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 commentaires
Réponse acceptée
Azzi Abdelmalek
le 21 Avr 2014
f = 100;
z = 0.5*ones(1,30)
b = 2;
c = 4;
Y = f*b*c*z;
disp(Y);
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Numerical Integration and Differential Equations dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!