フィルターのクリア

why i got license manager error ???

2 ビュー (過去 30 日間)
sevgul demir
sevgul demir 2021 年 7 月 12 日
コメント済み: 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).
sevgul demir
sevgul demir 2021 年 7 月 12 日
thanks a lot ^^

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeIntroduction 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