why i got license manager error ???

2 次查看(过去 30 天)
sevgul demir
sevgul demir 2021-7-12
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% EXAMPLE 14-2: Creating a Histogram and Probability Plot
% UnitSystem SI
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Plot normal probability plot
figure1 = figure('Color',[1 1 1]);
hdlp=normplot(e);
xlabel('Quantities from Standard Normal Distribution','FontSize',12,'FontWeight','Bold');
ylabel('Residuals','FontSize',12,'FontWeight','Bold');
set(hdlp,'LineWidth',1.5);
grid on;
% Plot Histogram
n = length(e);
b = -0.01:0.002:0.01;
figure2 = figure('Color',[1 1 1]);
hdlp = hist(e,b);
maxn=max(hdlp);
cs = cumsum(hdlp * maxn/n);
bar(b,hdlp,0.95,'g')
axis([-0.01,0.01,0,maxn])
box off
hold on
plot(b,cs,'k-s')
xlabel('Residuals','FontSize',12,'FontWeight','Bold');
ylabel('Count','FontSize',12,'FontWeight','Bold');
plot([-0.01 0.01],[maxn maxn],'k',[0.01 0.01],[0 maxn],'k')
j=0:0.1:1;
lenj=length(j);
text(repmat(0.011,lenj,1), maxn.* j',num2str(j',2))
plot([repmat(0.01,1,lenj);repmat(0.01,1,lenj)],[maxn * j;maxn * j],'k')
% Box plot
figure3 = figure('Color',[1 1 1]);
boxplot(e,'Notch','on');
this is the codes which i am planning to use but output is giving me the picture that i am gonna upload

回答(1 个)

Image Analyst
Image Analyst 2021-7-12
And when you did what it suggested, "contact your license manager", what did he say? If you don't have one, then you'll have to wait until the sales office opens tomorrow. If you think you've already bought it, or are within the trial period, then call technical support for free and fast installation help.
  3 个评论
Image Analyst
Image Analyst 2021-7-12
编辑:Image Analyst 2021-7-12
You can try using the Add-on manager (on the Home tab of the tool ribbon) to uninstall that toolbox (get rid of the trial version) and then tell it to install again (which will install the one you bought).

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by