
How to plot graph
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Michal Mihocko
am 5 Okt. 2018
Bearbeitet: KALYAN ACHARJYA
am 5 Okt. 2018
Hi,
I'd like to plot graph loga x (a=6). How can I plot it in Matlab?
Thanks for answer.
0 Kommentare
Akzeptierte Antwort
KALYAN ACHARJYA
am 5 Okt. 2018
Bearbeitet: KALYAN ACHARJYA
am 5 Okt. 2018
x=1:1:100;
log6(x)=log(x)/log(6)
y=log6(x);
plot(y);

4 Kommentare
KALYAN ACHARJYA
am 5 Okt. 2018
Bearbeitet: KALYAN ACHARJYA
am 5 Okt. 2018
It would be better if you post another new question so that others can answer you. Ans also share what you have tried so far to solve the question.
Weitere Antworten (1)
Michal Mihocko
am 5 Okt. 2018
1 Kommentar
KALYAN ACHARJYA
am 5 Okt. 2018
Bearbeitet: KALYAN ACHARJYA
am 5 Okt. 2018
post the question in new question, not in this section, so that other also can answer the question (maybe in better way)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!