
How to plot graph
조회 수: 3 (최근 30일)
이전 댓글 표시
Hi,
I'd like to plot graph loga x (a=6). How can I plot it in Matlab?
Thanks for answer.
댓글 수: 0
채택된 답변
KALYAN ACHARJYA
2018년 10월 5일
편집: KALYAN ACHARJYA
2018년 10월 5일
x=1:1:100;
log6(x)=log(x)/log(6)
y=log6(x);
plot(y);

댓글 수: 4
KALYAN ACHARJYA
2018년 10월 5일
편집: KALYAN ACHARJYA
2018년 10월 5일
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.
추가 답변 (1개)
Michal Mihocko
2018년 10월 5일
댓글 수: 1
KALYAN ACHARJYA
2018년 10월 5일
편집: KALYAN ACHARJYA
2018년 10월 5일
post the question in new question, not in this section, so that other also can answer the question (maybe in better way)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!