Borrar filtros
Borrar filtros

How do I delete the weird flat line?

3 visualizaciones (últimos 30 días)
PromoCodeBSJ
PromoCodeBSJ el 2 de Oct. de 2018
Comentada: Walter Roberson el 3 de Oct. de 2018
How do I delete the flat green line that appears? It seems to just pop in for no reason.
Current= xlsread(path,sheet,['B2:B' num2str(unique+1)]);
PeakPower= xlsread(path,sheet,['E2:E' num2str(unique+1)]);
Slope=PeakPower/Current;
figure(SlopevsA)
plot(Current,Slope)
hold on
That is my code

Respuesta aceptada

Adam Danz
Adam Danz el 2 de Oct. de 2018
If your variables Current and PeakPower are column vectors (which appears to be the case), when you divide them
Slope=PeakPower/Current;
the output, Slope is a matrix and at least one column of that matrix are zeros which produces the straight line at y=0.
  1 comentario
Walter Roberson
Walter Roberson el 3 de Oct. de 2018
Perhaps the instruction should be
Slope = PeakPower ./ Current;

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Directed Graphs en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by