How do I delete the weird flat line?
1 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Adam Danz
2018-10-2
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 个评论
Walter Roberson
2018-10-3
Perhaps the instruction should be
Slope = PeakPower ./ Current;
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!