Ploting two graph logarithm
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello, How can i plot graph these function? (assume not exist fractional) I want find which is greater than other.

0 Kommentare
Antworten (1)
KSSV
am 1 Apr. 2016
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 Kommentare
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!