How can I find a variation vector of a parameter ?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
How can I find two vector of variation of parameters bf and bm which varies
bf = 355.5+-7%;
bm = 34.4+-20%;
0 commentaires
Réponses (1)
Rafael Hernandez-Walls
le 17 Juil 2020
N=100;
a = 355.5+7;
b = 355.5-7;
r = (b-a).*rand(N,1) + a;
figure
plot(r)
hold on
plot([1 N],[a a],'r')
plot([1 N],[b b],'r')
%
N=100;
a = 34.4+20;
b = 34.4-20;
r2 = (b-a).*rand(N,1) + a;
figure
plot(r2)
hold on
plot([1 N],[a a],'r')
plot([1 N],[b b],'r')
2 commentaires
Rafael Hernandez-Walls
le 27 Août 2020
xlabel ('variation of r1 ( width of fiber) \pm7%')
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots 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!