why i got license manager error ???
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 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

0 Commenti
Risposte (1)
Image Analyst
il 12 Lug 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 Commenti
Image Analyst
il 12 Lug 2021
Modificato: Image Analyst
il 12 Lug 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).
Vedere anche
Categorie
Scopri di più su Introduction to Installation and Licensing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!