log10 vs semilog
Mostra commenti meno recenti
why does the graph of semilogy(gateVoltage, Draincurrent) not match the graph of plot(gateVoltage, log10(Draincurrent))?
both curves match perfectly in shape, but the semilogy y curve has very small positive y values while the log10 curve has large negative y values.
Risposte (1)
William Rose
il 8 Apr 2021
Modificato: William Rose
il 8 Apr 2021
0 voti
In the first case, the actual value Draincurrent is plotted on the vertical axis, and the vertical axis has log scaling.
In the second case, the log of Draincurrent is plotted on the vertical axis, and the vertical axis has linear (i.e. normal) scaling. I assume your DrainCurrent is <1 (and >0), which is why log10(Draincurrent) is negative.
Categorie
Scopri di più su Data Logging in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!