why i got license manager error ???

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 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

Answers (1)

Image Analyst
Image Analyst on 12 Jul 2021
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 Comments

just right now i got this message when i run the codes ... and clicked the red line which is recommending .... And already bought it himmmmm yeah i have to call the techincal offices and ask... anyway thanks for the reply :)
Image Analyst
Image Analyst on 12 Jul 2021
Edited: Image Analyst on 12 Jul 2021
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).
thanks a lot ^^

Sign in to comment.

Categories

Products

Release

R2021a

Asked:

on 12 Jul 2021

Commented:

on 12 Jul 2021

Community Treasure Hunt

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

Start Hunting!