Filter löschen
Filter löschen

need sugestion to solve exponential series

2 Ansichten (letzte 30 Tage)
Israt Jahan
Israt Jahan am 12 Jul. 2016
Beantwortet: Walter Roberson am 12 Jul. 2016
I am trying to solve following equation with matlab.anyone please give me some suggestion how can i find value of R1....R7 and C1....C7.
Z(t)=∑_(i=1)^n(R_i (1-e^(-t/(R_i C_i )) )
Z(t)=0.004
And t=10, n=7
Thanks

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 12 Jul. 2016
n = 7;
R = sym('R', [1 n]);
C = sym('C', [1 n]);
t = 10;
Ztval = 0.004;
Zt = sum( R .* (1 - exp(-t ./( R .* C ) ) ) );
solC1 = solve(Zt == Ztval, C(1), 'ReturnConditions', true);
This will give you solC1.C1 as a solution for C1, subject to a condition listed in solC1.conditions
You cannot solve for all 14 variables when you only have one equation.

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics and Optimization finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by