Borrar filtros
Borrar filtros

why i got license manager error ???

2 visualizaciones (últimos 30 días)
sevgul demir
sevgul demir el 12 de Jul. de 2021
Comentada: sevgul demir el 12 de Jul. de 2021
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 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

Respuestas (1)

Image Analyst
Image Analyst el 12 de Jul. de 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 comentarios
Image Analyst
Image Analyst el 12 de Jul. de 2021
Editada: Image Analyst el 12 de Jul. de 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).
sevgul demir
sevgul demir el 12 de Jul. de 2021
thanks a lot ^^

Iniciar sesión para comentar.

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by