seimlogx not working in an iteration

1 次查看(过去 30 天)
I am working on a MATLAB script that iterates over several values and the code is attached. For some reason it doesn't see semiology. If I plot each value of r individually, but within the script it just gives me a linear scale. A bug?
%
% Amdahl's Law
% ECEN 4243
%
clear
clc ; clf
r = [0.90 0.96 0.98 0.99];
n=1:10000;
hold on
for i = 1:length(r)
S(i,:) = 1./((r(i)./n)+(1-r(i)));
semilogx(S(i,:))
end

采纳的回答

Kelly Kearney
Kelly Kearney 2018-4-24
The hold on command is the culprit... you're issuing it before you plot, so the linear axis is being held throughout. If you move the hold command after the first call to semilogx, it should work as intended.

更多回答(0 个)

类别

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

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by