need sugestion to solve exponential series

2 次查看(过去 30 天)
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

采纳的回答

Walter Roberson
Walter Roberson 2016-7-12
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics and Optimization 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by