Getting matlab to read values of a graph
1 回表示 (過去 30 日間)
古いコメントを表示
How do I read the values of voltage when current is zero, and current when voltage is zero from a current voltage graph in matlab
3 件のコメント
回答 (1 件)
Walter Roberson
2015 年 11 月 3 日
First step:
v_at_c0 = interp1(current, voltage, 0); %estimate of voltage at which current is 0
For finding the current at which the voltage becomes 0, a sample graph would help. In some cases it is very easy, in other cases it takes a bunch more work.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!