what is the problem in this code because when i use hold on command in my code but It does not work ,what is my problem ?

2 次查看(过去 30 天)
clc
clear
x = 36 ;
y = 10^16 ;
n = -25:-15 ;
f_1 = ( y .^ n ) ./ ( ( exp( x .*n)) ) ;
f_2 = ( y / exp ( x ) ).^n;
plot(n,f_1,"r")
hold on
plot(n,f_2,"b")
legend('f_1','f_2')
xlabel("n")
hold off

采纳的回答

Jon
Jon 2021-10-22
hold on is working but except for some NaN's which aren't plotted your functions f_1 and f_2 produce the same values as a function of n so the two curves are on top of each other

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 NaNs 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by