필터 지우기
필터 지우기

Getting matlab to read values of a graph

조회 수: 2 (최근 30일)
Tara Milne
Tara Milne 2015년 11월 3일
답변: Walter Roberson 2015년 11월 3일
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
Tara Milne
Tara Milne 2015년 11월 3일
I have the actual Matlab figure, I made the current column one vector and voltage the other and did plot(current, voltage)
Tara Milne
Tara Milne 2015년 11월 3일
btw I don't have data points for when the current and voltage are zero, but the graph goes through these points

댓글을 달려면 로그인하십시오.

답변 (1개)

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

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by