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?
    6 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
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?
1 Kommentar
  David Hill
      
      
 am 3 Feb. 2022
				One equation, two unknowns, K1 and K2 fall on a line for each i, infinite solutions for each i.
Antworten (2)
  Yongjian Feng
    
 am 3 Feb. 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
0 Kommentare
Siehe auch
Kategorien
				Mehr zu Calculus finden Sie in Help Center und File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!