![]() |
رسم شکل
سلام
میخواستم بدونم چه طوری میشه با مطلب، شکل رسم کرد.مثلا میخوام شکل یه شبکه عصبی بکشم.میدونم با نرم افزارهای دیگه هم میشه اما میخواستم بدونم با مطلب چه طوری میشه اینکارو انجام داد؟ با تشکر |
نقل قول:
با کد نویسی هم میشه این کار رو انجام داد. |
نقل قول:
با تشکر |
نقل قول:
% show network view(net) figure; plot(T','linewidth',2) hold on plot(Y','r--') grid on legend('Targets','Network response','location','best') ylim([-1.25 1.25]) % generate a grid span = -1:.01:2; [P1,P2] = meshgrid(span,span); pp = [P1(:) P2(:)]'; % simulate neural network on a grid aa = net(pp); aa = full(aa); % plot classification regions figure(1) mesh(P1,P2,reshape(aa,length(span),length(span))-5); colormap cool view(2) یا اینطوری [net,Y,E] = adapt(net,p,p); % view network structure view(net) % check final network parameters disp('Weights and bias of the ADAPTIVE after adaptation') net.IW{1} net.b{1} %Weights and bias of the ADAPTIVE after adaptation %Plot results % transform result vectors Y = seq2con(Y); Y = Y{1}; E = seq2con(E); E = E{1}; % start a new figure figure; % first graph subplot(211) plot(t,y,'b', t,Y,'r--'); legend('Original','Prediction') grid on xlabel('Time [sec]'); ylabel('Target Signal'); ylim([-1.2 1.2]) % second graph subplot(212) plot(t,E,'g'); grid on legend('Prediction error') xlabel('Time [sec]'); ylabel('Error'); ylim([-1.2 1.2]) |
نقل قول:
اوکی.... ممنون فقط بعضی جاها متوجه بعضی پارامترها نمیشم!!! آخه معرفی نشدن امکانش هست اونارو معرفی کنین یا یه کوچولو بیشتر توضیح بدین؟ بازم از لطفتون ممنون |
نقل قول:
|
نقل قول:
laughingrose1@gmail.com |
زمان محلي شما با تنظيم GMT +3.5 هم اکنون ۰۱:۳۳ بعد از ظهر ميباشد. |
Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.