필터 지우기
필터 지우기

beginner: writing a function for code

조회 수: 1 (최근 30일)
Adrienne
Adrienne 2014년 5월 20일
댓글: Adrienne 2014년 5월 20일
what would this be in writing a function called "event detection algorithm"
%%2.2 Calculation of Jump Height Data
% make the data positive, set a threshold (including noise) for
% baseline. tnf = total number of frames
% =================================================================
fz = -data(:,1);
fzmin= min(fz);
fzthres= fzmin+5+n; %%sets threshold
to= find(fz<fzthres,1,'first'); %%take-off
td= find(fz(to:end)>fzthres,1,'first'); %%touch-down
td= td+to -1; %%point of landing, global number
tnf= (td-to); %%jumper in the air
tof= (tnf*fr); %%time of flight eq
jh(i,1)=(-g*(tof.^2)/8); %%jump height eq
fzminMN = nanmean(fz(to:td)); %%mean min across time part
fz= fz + abs(fzminMN);

답변 (1개)

Image Analyst
Image Analyst 2014년 5월 20일
I would call this just "a chunk of code" though some people may use different terminology. Why do you ask?
  댓글 수: 4
Adrienne
Adrienne 2014년 5월 20일
I was just thinking, about how I could make my code look neater, and I heard someone talk about user functions. I understand the simple ones, but this one wouldn't be simple. I know the end result it jump height (jt)
fz = -data(:,1);
fzmin= min(fz);
fzthres= fzmin+5+n; %%sets threshold
to= find(fz<fzthres,1,'first'); %%take-off
td= find(fz(to:end)>fzthres,1,'first'); %%touchdown
I know this are^^^ all inputs then tof, tnf, and jh are the outputs with jh being the overall desired output but I have no idea of how to put this into a function.
Adrienne
Adrienne 2014년 5월 20일
sorry my internet is dodgy atm!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by