How to find the value of R ?
Ältere Kommentare anzeigen
If
R1 = 0.173*(E^3/2)*A1^1/3
R2 = 0.173*(E^3/2)*A2^1/3
R3 = 0.173*(E^3/2)*A3^1/3
Wi = (Ni*Ai)/M
for R1 Ni = 10 & A1 = 12
for R2 N2 = 8 & A2 = 1
foe R3 N3 = 4 & A3 = 16
M = sum(Ni*Ri)
E = ( 1,2,...,10)
Then
1/R = sum(wi/Ri)
Find R
2 Kommentare
Greg Heath
am 17 Feb. 2013
Bearbeitet: Image Analyst
am 17 Feb. 2013
Please separate equations by putting them on separate lines.
Thanks.
Walter Roberson
am 17 Feb. 2013
Reformatted, but they are hard to interpret that way too.
Akzeptierte Antwort
Weitere Antworten (4)
Tae Yeong Kim
am 17 Feb. 2013
Bearbeitet: Tae Yeong Kim
am 17 Feb. 2013
0 Stimmen
It is very hard to interpret the equations. Could you form the equations neatly?
Image Analyst
am 17 Feb. 2013
Isn't it just
R = 1 ./ sum(wi./Ri)
????? Of course that assumes you already know what wi and Ri are, which none of us do.
Walter Roberson
am 17 Feb. 2013
N = [10 8 4]
A = [12 1 16];
R = ??
M = sum(R .* N);
W = (N .* A) ./ M;
Final_R = 1 ./ sum(W .* R);
Unfortunately the definition of R(i) is confused as it is based upon E which appears to be 1:10.
dashty
am 18 Feb. 2013
0 Stimmen
Kategorien
Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!