代码搜索结果

找到约 582,192 项符合 Cortex-M 的代码

bin_state.m

function bin_state = bin_state( int_state, m ) % converts an vector of integer into a matrix; the i-th row is the binary % form % of m bits for the i-th integer for j = 1:length( int_state )

bin_state.m

function bin_state = bin_state( int_state, m ) % converts an vector of integer into a matrix; the i-th row is the binary form % of m bits for the i-th integer for j = 1:length( int_state )

perform_median_filtering.m

function M = perform_median_filtering(M,k) % perform_median_filtering - perform moving average median % % M = perform_median_filtering(M,k); % % k is the half width of the window (detult k=1). %

perform_median_filtering.m.svn-base

function M = perform_median_filtering(M,k) % perform_median_filtering - perform moving average median % % M = perform_median_filtering(M,k); % % k is the half width of the window (detult k=1). %

rescale.m.svn-base

function y = rescale(x,a,b) % rescale - rescale data in [a,b] % % y = rescale(x,a,b); % % Copyright (c) 2004 Gabriel Peyr? if nargin

rescale.m

function y = rescale(x,a,b) % rescale - rescale data in [a,b] % % y = rescale(x,a,b); % % Copyright (c) 2004 Gabriel Peyr? if nargin

addentity.m

%ADDENTITY Add map entity object to map. % M = ADDENTITY(M,E) appends map entity E to map M and % extends the map covariance matrix by filling in zeros % in the new row and column belonging to E

setrobot.m

%SETROBOT Set robot from map. % M = SETROBOT(M,R) sets the robot object in map M if M already % contains a robot. Otherwise M will be unchanged. Use ADDENTITY % to add a robot to a map. % % No

display.m

%DISPLAY Display method for map object. % DISPLAY(M) displays the map object M. % % See also MAP. % v.1.0, Nov. 2003, Kai Arras, CAS-KTH function display(m); disp(['Map "', m.name,'":']); disp(sp

setstate.m

%SETSTATE Set map state vector and state covariance matrix. % M = SETSTATE(M,X,C) overwrites the map state vector and the state % covariance matrix by X and C respectively. The size of X is nx1,