Ploting two graph logarithm

1 次查看(过去 30 天)
Dani D
Dani D 2016-4-1
回答: KSSV 2016-4-1
Hello, How can i plot graph these function? (assume not exist fractional) I want find which is greater than other.

回答(1 个)

KSSV
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');

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by