
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!