Borrar filtros
Borrar filtros

Getting matlab to read values of a graph

2 visualizaciones (últimos 30 días)
Tara Milne
Tara Milne el 3 de Nov. de 2015
Respondida: Walter Roberson el 3 de Nov. de 2015
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 comentarios
Tara Milne
Tara Milne el 3 de Nov. de 2015
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 el 3 de Nov. de 2015
btw I don't have data points for when the current and voltage are zero, but the graph goes through these points

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 3 de Nov. de 2015
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.

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by