Effacer les filtres
Effacer les filtres

Ploting two graph logarithm

1 vue (au cours des 30 derniers jours)
Dani D
Dani D le 1 Avr 2016
Réponse apportée : KSSV le 1 Avr 2016
Hello, How can i plot graph these function? (assume not exist fractional) I want find which is greater than other.

Réponses (1)

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

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by