How to plot graph
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Michal Mihocko
il 5 Ott 2018
Riaperto: Michal Mihocko
il 5 Ott 2018
Hi,
I’like to plot log graph in matlab.Can you help me? Example is below in file.
Thanks for answer.
3 Commenti
Risposta accettata
KALYAN ACHARJYA
il 5 Ott 2018
Modificato: KALYAN ACHARJYA
il 5 Ott 2018
I have already answered the similar question, it's same. In 6 you have to change to 9
x=1:1:100;
log9(x)=log(x)/log(9)
y=log9(x);
plot(y);
Try to learn yourself, keep doing and trying
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!