Ploting two graph logarithm
1 回表示 (過去 30 日間)
古いコメントを表示
Hello, How can i plot graph these function? (assume not exist fractional) I want find which is greater than other.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/159611/image.jpeg)
0 件のコメント
回答 (1 件)
KSSV
2016 年 4 月 1 日
clc; clear all ;
n = linspace(1,100) ;
f1 = log(n.^2).*log(n) ;
f2 = log(log((n)).^(n.^2)) ;
plot(n,f1,'r') ;
hold on
plot(n,f2,'b') ;
legend('log(n^2)logn','log(logn)^n^2');
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!