亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專(zhuān)輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? fanqs_polar_test_20.m

?? matlab 學(xué)習(xí)matlab的一個(gè)好例子
?? M
字號(hào):
function varargout = f_sincos(varargin)% FANQS_POLAR_TEST_20 Application M-file for fanqs_polar_test_20.fig%    FIG = FANQS_POLAR_TEST_20 launch fanqs_polar_test_20 GUI.%    FANQS_POLAR_TEST_20('callback_name', ...) invoke the named callback.% Last Modified by GUIDE v2.0 13-Apr-2002 10:13:10if nargin == 0  % LAUNCH GUI        %     time = 1 ;    %     save time time ;        fig = openfig(mfilename,'reuse');    handles = guihandles(fig);    % Use system color scheme for figure:    set(fig,'Color',get(0,'defaultUicontrolBackgroundColor'));    %     F_Axes = axes( 'Position',[0.37, 0.20, 0.6, 0.75] ,...%         'Box' , 'on' ,...%         'Tag' , 'F_Axes') ;%     %     t = 0:1/50*pi:2*pi ;%     p = plot(t,sin(t)) ;%     handles.p = p ;	% Generate a structure of handles to pass to callbacks, and store it. 	guidata(fig, handles);	if nargout > 0		varargout{1} = fig;	endelseif ischar(varargin{1}) % INVOKE NAMED SUBFUNCTION OR CALLBACK%     load time time ;%     if time <= 30 ;%         time = time + 1 ;%         save time time ;%     else%         fanqs_polar_test_20 ;%     end        	try		[varargout{1:nargout}] = feval(varargin{:}); % FEVAL switchyard	catch		disp(lasterr);	endend% --------------------------------------------------------------------function varargout = Model_Callback(gcbf, eventdata, handles, varargin)% Stub for Callback of the uicontrol handles.togglebutton3.% save current results handles = guihandles( gcbf ) ;t = 0 : 1/30*pi : 8*pi ;p_func = { 'p = sin(t)+3*cos(t/2)' ;...        'p = sin(2*t)+3*cos(t/2)' ;...        'p = sin(4*t)+2*cos(t/2)' ;...        'p = sin(2*t)+0.5*cos(t/2)' ;...        'p = 2*sin(2*t)+0.5*cos(t/2)' ;...        'p = 2*sin(3*t)+0.5*cos(t/4)' ;...        'p = 2*sin(-1.5*t)+3*cos(t/2)' ;...        'p = -4*sin(-3*t)-3*cos(-3*t)' ;...        'p = 4*sin(-4*t)+2.5*cos(2*t)' ;...        'p = 2*sin(2*t)+cos(1/2*t)' ;...        'p = sin(2*t)+cos(1/2*t)' ;...        'p = sin(4*t)-4*cos(1*t)' ;...        'p = -2*sin(3*t)-4*cos(0.5*t)' ;...        'p = -2*sin(6*t)-4*cos(2*t)' ;...        'p = -3*sin(3*t)-4*cos(2*t)' ;...        'p = -3*sin(3*t)+0.5*cos(2*t)' ;...        'p = sin(t)+cos(t)' ;...        'p = sin(2*t)+0.5*cos(t/2)' ;...        'p = sin(4*t)+cos(t/2)' ;...        'p = sin(t)+3*cos(t/2)' } ;p_func(21:40,1) = p_func ;for i = 1:40    output_function = p_func(i) ;        output_function = char(output_function) ;    eval([output_function,' ;']) ;    n = (mod(i,20) ~= 0)*mod(i,20) + (mod(i,20) == 0)*20 ;    n = sprintf( '%s',num2str(n)) ;    output_function = ['No.',n,' ',output_function] ;    set( handles.output_function, 'string', output_function ) ;    %     delete(handles.p) ;        delete(gca) ;    F_Axes = axes( 'Position',[0.37, 0.20, 0.6, 0.75] ,...        'Box' , 'on' ,...        'Tag' , 'F_Axes') ;    subplot(F_Axes);        if i <= 20        p = polar(t,p,'r') ;        handles.p = p ;    else        p= plot(t,p,'b') ;        handles.p = p ;    end    pause(1.5) ;      end% --------------------------------------------------------------------function varargout = Rand_Callback(h, eventdata, handles, varargin)% Stub for Callback of the uicontrol handles.togglebutton3.T = 20*pi ;t = 0:1/30*pi:T ;a = round(rand*16)/4 - 2 ;b = round(rand*16)/4 - 2 ;c = round(rand*16)/4 - 2 ;d = round(rand*16)/4 - 2 ;p = a*sin(b*t) + c*cos(d*t) ;% Take the expression to the interface.output_function = outplus_expression(a,b,c,d) ;set( handles.output_function, 'string', output_function ) ;delete(gca) ;F_Axes = axes('Position',[0.35, 0.20, 0.6, 0.75] ,...    'Box' , 'on' ,...    'Tag' , 'F_Axes') ;subplot(F_Axes);hold off ;polar(t,p,'r') ;axis off ;% --------------------------------------------------------------------function varargout = Plot_Callback(h, eventdata, handles, varargin)% Stub for Callback of the uicontrol handles.Plot.% save current results handles = guihandles( h ) ;guidata(h, handles);% Take the value of function coefficient ( t , a , b , c , d ) .[t,a,b,c,d] = take_value ;% Take the expressionp = ( a*sin(b*t) + c*cos(d*t) ) ;% Take the expression to the interface.output_function = outplus_expression(a,b,c,d) ;set( handles.output_function, 'string', output_function ) ;delete(gca) ;F_Axes = axes('Position',[0.35, 0.20, 0.6, 0.75] ,...    'Box' , 'on' ,...    'Tag' , 'F_Axes') ;subplot(F_Axes);plot(t,p) ;if get(handles.Grid, 'Value' ) == 0        set(F_Axes,'XGrid','off','YGrid','off');    axis off ;     else      set(F_Axes,'GridLineStyle','--','XGrid','on','YGrid','on');end   % --------------------------------------------------------------------function varargout = Polar_Callback(h, eventdata, handles, varargin)% Stub for Callback of the uicontrol handles.pushbutton2.% save current results handles = guihandles( h ) ;guidata(h, handles);% Take the value of function coefficient ( t , a , b , c , d ) .[t,a,b,c,d] = take_value ;p = ( a*sin(b*t) + c*cos(d*t) ) ;% Take the expression to the interface.output_function = outplus_expression(a,b,c,d) ;set( handles.output_function, 'string', output_function ) ;% hold off ;delete(gca) ;F_Axes = axes('Position',[0.35, 0.20, 0.6, 0.75] ,...    'Box' , 'on' ,...    'Tag' , 'F_Axes') ;axis off ;  subplot(F_Axes);hold offpolar(t,p,'r') ;% --------------------------------------------------------------------function varargout = Plot3_Callback(h, eventdata, handles, varargin)% Stub for Callback of the uicontrol handles.pushbutton2.% save current results handles = guihandles( h ) ;guidata(h, handles);% Take the value of function coefficient ( t , a , b , c , d ) .[t,a,b,c,d] = take_value ;% Take the expressionx = a*sin(b*t) ;y = c*cos(d*t) ;z = t ;% z = ( a*sin(b*t) + c*cos(d*t) ) ;a = sprintf( '%s' , num2str(a) ) ;b = sprintf( '%s' , num2str(b) ) ;c = sprintf( '%s' , num2str(c) ) ;d = sprintf( '%s' , num2str(d) ) ;% Take the expression to the interface.output_function = ['x = ',a,'*sin(',b,'*t)','; y = ',c,'*cos(',d,'*t);',' z = t.'] ;set( handles.output_function, 'string', output_function ) ;delete(gca) ;F_Axes = axes('Position',[0.35, 0.20, 0.6, 0.75] ,...    'Box' , 'on' ,...    'Tag' , 'F_Axes') ;subplot(F_Axes);plot3(x,y,z) ;if get(handles.Grid, 'Value' ) == 0        set(F_Axes,'XGrid','off','YGrid','off','ZGrid','off');else      set(F_Axes,'GridLineStyle','--','XGrid','on','YGrid','on','ZGrid','on');end   % --------------------------------------------------------------------function varargout = Color_Callback(h, eventdata, handles, varargin)% Stub for Callback of the uicontrol handles.pushbutton2.handles = guihandles(h);guidata(h, handles);% r = 1 - rand/3 ;% g = 1 - rand/3 ;% b = 1 - rand/3 ;c = 2.6 + rand * 0.1 ;if c <= 1    r = rand * c ;    g = rand * (c - r) ;    b = c - r - g ;elseif (c > 1) & (c <= 2)    r = rand ;    if r < (c - 1)        g = (c - 1 - r) + rand * (2 - c + r) ;    else        g = rand * (c - r) ;    end    b = c - r - g ;elseif (c > 2) & (c <= 3)    r = (c - 2) + rand * (3 - c) ;    g = (c - r - 1) + rand * (2 - c + r) ;    b = c - r - g ;endset(gcbf,'Color',[r g b]) ;set(handles.Color,'BackgroundColor',[r g b]) ;set(handles.Grid,'BackgroundColor',[r g b]) ;set(handles.Model,'BackgroundColor',[r g b]) ;set(handles.Plot,'BackgroundColor',[r g b]) ;set(handles.Plot3,'BackgroundColor',[r g b]) ;set(handles.Rand,'BackgroundColor',[r g b]) ;set(handles.Polar,'BackgroundColor',[r g b]) ;set(handles.Exit,'BackgroundColor',[r g b]) ;c = c + 0.2 ;if c <= 1    r = rand * c ;    g = rand * (c - r) ;    b = c - r - g ;elseif (c > 1) & (c <= 2)    r = rand ;    if r < (c - 1)        g = (c - 1 - r) + rand * (2 - c + r) ;    else        g = rand * (c - r) ;    end    b = c - r - g ;elseif (c > 2) & (c <= 3)    r = (c - 2) + rand * (3 - c) ;    g = (c - r - 1) + rand * (2 - c + r) ;    b = c - r - g ;endset(handles.c1,'BackgroundColor',[r g b]) ;set(handles.c2,'BackgroundColor',[r g b]) ;set(handles.c3,'BackgroundColor',[r g b]) ;set(handles.c4,'BackgroundColor',[r g b]) ;set(handles.c5,'BackgroundColor',[r g b]) ;set(handles.c6,'BackgroundColor',[r g b]) ;set(handles.c7,'BackgroundColor',[r g b]) ;set(handles.c8,'BackgroundColor',[r g b]) ;set(handles.c9,'BackgroundColor',[r g b]) ;% set(gca,'Color',[r g b]) ;% --------------------------------------------------------------------function varargout = Exit_Callback(h, eventdata, handles, varargin)% Stub for Callback of the uicontrol handles.pushbutton2.close(gcbf) ;% --------------------------------------------------------------------function [t,a,b,c,d] = take_value% Take the value of function coefficient ( t , a , b , c , d ) .% save current results handles = guihandles( gcbf ) ;guidata(gcbf, handles);temp_T = get( handles.T , 'value' ) ;T_name = 'T' ;T = take_time( temp_T , T_name ) ;t = 0 : 1/30*pi : T*pi ;temp_a = get( handles.a , 'value' ) ;a_name = 'a' ;a = take_coef( temp_a , a_name ) ;temp_b = get( handles.b , 'value' ) ;b_name = 'b' ;b = take_coef( temp_b , b_name ) ;temp_c = get( handles.c , 'value' ) ;c_name = 'c' ;c = take_coef( temp_c , c_name ) ;temp_d = get( handles.d , 'value' ) ;d_name = 'd' ;d = take_coef( temp_d , d_name ) ;% --------------------------------------------------------------------function value = take_time( temp , para_name )% Take the value of function coefficient ( T ) .if temp < 6    value = 0.5*2^temp ;else    % The prompt of inputdlg require the parameter name.    value = define_coef( para_name ) ;   end% --------------------------------------------------------------------function value = take_coef( temp , para_name )% Take the value of function coefficient ( a , b , c , d ) .if temp <9    value = (temp < 5)*0.25*2^temp + (temp > 5)*-0.25*2^temp ;else    % The prompt of inputdlg require the parameter name.    value = define_coef( para_name ) ;   end% --------------------------------------------------------------------function value = define_coef( para_name )% Take the definer of function coefficient ( a , b , c , d ) .para_name = ['Input the coefficient :  ',para_name,' = ' ] ;prompt = { para_name };title = 'Select Coef';lines = 1;def     = {''};fields = { 'input' } ;value = inputdlg( prompt, title, lines, def );value = cell2struct( value, fields ,1) ;value = str2num( value.input ) ;% --------------------------------------------------------------------function output_function = outplus_expression(a,b,c,d)% To unite the expression :% p = a*sin(b*t) + c*cos(d*t) ;c1 = c ;a = sprintf( '%s' , num2str(a) ) ;b = sprintf( '%s' , num2str(b) ) ;c = sprintf( '%s' , num2str(abs(c)) ) ;d = sprintf( '%s' , num2str(d) ) ;if c1 > 0    output_function = ['p = ',a,'*sin(',b,'*t)',' + ',c,'*cos(',d,'*t)'] ;else    output_function = ['p = ',a,'*sin(',b,'*t)',' - ',c,'*cos(',d,'*t)'] ;end

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品美女久久久久久 | 日韩av电影天堂| 中文字幕欧美一| 国产精品国产三级国产aⅴ入口| 国产午夜一区二区三区| 精品福利一区二区三区| 久久亚洲一级片| 中文字幕第一区| 国产精品成人在线观看| 最新国产の精品合集bt伙计| 亚洲黄一区二区三区| 亚洲一区二区三区影院| 日韩av在线发布| 国产精品综合在线视频| 国产成人精品网址| 色综合一区二区三区| 在线精品亚洲一区二区不卡| 欧美日韩国产精品自在自线| 欧美xingq一区二区| 国产精品午夜在线| 亚洲另类春色国产| 日韩电影在线观看电影| 久久精品二区亚洲w码| 成人午夜私人影院| 色婷婷香蕉在线一区二区| 欧美系列在线观看| 日韩欧美中文字幕一区| 久久久91精品国产一区二区精品 | 亚洲国产精品成人综合色在线婷婷 | 一本一道久久a久久精品| 欧美日韩中文国产| 精品少妇一区二区三区日产乱码| 中文字幕+乱码+中文字幕一区| 一区二区三区四区五区视频在线观看| 午夜日韩在线观看| 国产一区二区三区最好精华液| 99精品一区二区| 91精品国产免费| 中文字幕+乱码+中文字幕一区| 亚洲成人你懂的| 国产麻豆精品95视频| 色综合久久中文综合久久97 | 亚洲免费成人av| 日韩电影免费在线观看网站| 东方aⅴ免费观看久久av| 在线视频一区二区三| 26uuu成人网一区二区三区| 亚洲欧洲成人自拍| 美女精品自拍一二三四| 色综合久久88色综合天天 | 奇米影视在线99精品| 国产**成人网毛片九色 | 精品国产伦一区二区三区观看体验| 日本一区二区电影| 奇米影视一区二区三区| 99久久99久久精品免费观看| 欧美一级二级三级蜜桃| 亚洲欧洲综合另类在线| 国产综合一区二区| 欧美电影影音先锋| 国产精品久久福利| 久久se这里有精品| 欧美日韩你懂得| 综合久久久久久久| 国产成人啪免费观看软件| 91精品国产全国免费观看| 亚洲天堂福利av| 国产成人一级电影| 精品毛片乱码1区2区3区| 一区二区三区在线播| www.一区二区| 久久久777精品电影网影网 | 懂色av一区二区三区蜜臀| 欧美一区在线视频| 一区二区不卡在线视频 午夜欧美不卡在 | 波多野结衣一区二区三区| 日韩免费一区二区| 日产国产高清一区二区三区| 欧美亚洲一区二区在线观看| 中文字幕亚洲成人| 成人一区二区三区视频在线观看 | 亚洲线精品一区二区三区| 成人理论电影网| 久久精品视频一区二区三区| 久久97超碰色| 精品少妇一区二区三区免费观看| 香港成人在线视频| 欧美日韩在线播放一区| 亚洲综合免费观看高清在线观看| 成人18视频日本| 国产精品网友自拍| 成人午夜视频免费看| 国产女人18水真多18精品一级做| 毛片av一区二区三区| 日韩你懂的在线播放| 青青草91视频| 欧美va在线播放| 激情av综合网| 久久久久久夜精品精品免费| 国产一区二区三区在线看麻豆| 欧美成人乱码一区二区三区| 免费精品视频最新在线| 欧美成人在线直播| 久久er精品视频| 久久女同性恋中文字幕| 国产精品白丝jk白祙喷水网站| 久久婷婷成人综合色| 国产成人在线视频免费播放| 国产精品欧美一级免费| 成人av第一页| 亚洲综合自拍偷拍| 欧美这里有精品| 日日夜夜精品视频天天综合网| 欧美日韩国产在线播放网站| 天天色综合天天| 日韩免费观看高清完整版 | 国产九色sp调教91| 中文字幕中文乱码欧美一区二区| 99re8在线精品视频免费播放| 亚洲精品ww久久久久久p站| 在线亚洲+欧美+日本专区| 视频在线观看一区| 久久美女高清视频| 菠萝蜜视频在线观看一区| 一区二区三区免费看视频| 日韩一区二区三免费高清| 国内偷窥港台综合视频在线播放| 国产精品拍天天在线| 欧美自拍偷拍一区| 久久9热精品视频| 国产精品短视频| 在线不卡a资源高清| 国产一区视频导航| 亚洲日本电影在线| 日韩一区二区三区观看| 成人一区二区在线观看| 亚洲国产一区二区三区| 精品国产人成亚洲区| 成人动漫视频在线| 石原莉奈在线亚洲三区| 久久精品欧美一区二区三区麻豆| 99精品视频一区二区| 免费精品视频在线| 中文字幕亚洲区| 日韩午夜在线观看视频| 99精品偷自拍| 精品一区二区三区久久久| 亚洲精品久久嫩草网站秘色| 欧美一区二区在线免费播放| 成人福利电影精品一区二区在线观看| 亚洲大型综合色站| 日本一区二区视频在线观看| 欧美老女人第四色| av午夜一区麻豆| 蜜臀av国产精品久久久久| 日韩一区欧美一区| 日韩欧美区一区二| 91电影在线观看| 国内成人精品2018免费看| 亚洲一区二区三区自拍| 欧美经典三级视频一区二区三区| 欧美精品乱码久久久久久按摩| 粉嫩av一区二区三区在线播放| 日韩高清不卡一区二区| 亚洲精品一二三四区| 精品国产凹凸成av人网站| 欧美日韩久久久一区| 91视频在线观看| 国产精品中文欧美| 欧美96一区二区免费视频| 亚洲小说欧美激情另类| 国产精品久久综合| 久久久久久夜精品精品免费| 欧美日韩成人高清| 欧洲国内综合视频| 波多野结衣的一区二区三区| 经典三级视频一区| 美腿丝袜亚洲色图| 亚洲成人www| 亚洲乱码中文字幕| 国产精品剧情在线亚洲| 久久亚洲二区三区| 日韩欧美成人一区| 欧美一区午夜精品| 5566中文字幕一区二区电影 | 中文字幕在线视频一区| 亚洲精品在线观| 精品日韩一区二区三区免费视频| 欧美日韩国产天堂| 欧美三级在线播放| 在线观看日韩一区| 色婷婷狠狠综合| 日本乱人伦一区| 91在线视频观看| 9久草视频在线视频精品| 岛国精品在线观看| 国产寡妇亲子伦一区二区| 国产在线精品一区二区三区不卡 | 极品销魂美女一区二区三区| 日韩av一区二区三区|