필터 지우기
필터 지우기

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