hi i have vector for i and this equation : i= (K1*V+(K2*V^0.5)) and amount of V in known. how can i found K1 and K2?

3 visualizaciones (últimos 30 días)
hi i have vector for i and this equation : i= (K1*V+(K2*V^0.5)) and amount of V in known. how can i found K1 and K2?

Respuestas (2)

Yongjian Feng
Yongjian Feng el 3 de Feb. de 2022
If I and V are vectors, you can just call solve to do the job:
I = [1 2];
V = [3 4];
syms K1
syms K2
eq = I == (K1.*V+(K2.*V.^0.5));
sol = solve(eq)
sol.K1
sol.K2

David Hill
David Hill el 3 de Feb. de 2022
I=[1 2];
V=[3 4];
K=[V',sqrt(V)']\I';

Community Treasure Hunt

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

Start Hunting!

Translated by