Community Profile

photo

Meade


University of Virginia

Last seen: 대략 2개월 전 2015년부터 활동

I am a biomedical engineer working in the area of injury biomechanics with a focus on high-rate musculoskeletal dynamics and orthopaedic fixation. My interests include both modeling for rigid-body dynamics and experimental characterization as a means for understanding the mechanisms of injury and most promising avenues for injury-mitigating technologies.

통계

All
  • 5-Star Galaxy Level 3
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Knowledgeable Level 1
  • First Answer
  • Scavenger Finisher
  • Promoter
  • Commenter
  • Solver

배지 보기

Content Feed

보기 기준

제출됨


J211 Compliant filter
Calculate filter coefficients & filter signals in accordance with SAE-J211. -Phaseless -2 pole Butterworth IIR -Adjustable corne...

거의 4년 전 | 다운로드 수: 13 |

Thumbnail

제출됨


varcov
Calculate the VARIANCE-COVARIANCE matrix from the outputs of the |fit| function.

4년 초과 전 | 다운로드 수: 1 |

제출됨


pack_n_go
Compile Zip archives and automatically include all dependencies.

5년 초과 전 | 다운로드 수: 2 |

Thumbnail

답변 있음
How can I open a generic EXCEL file ?
Hope this helps. Best, Meade exl = actxserver('excel.application'); % Open a new workbook exlWkbk = exl.workb...

거의 6년 전 | 0

답변 있음
how i can perform this for loop
You're using the |return| function. This exits out of the j loop. Try instead replacing |return| with |continue|. I'm able t...

거의 6년 전 | 0

문제를 풀었습니다


Orthonormal matrix
You decide whether any given matrix is an orthonormal matrix or not. If each column in a matrix is perpendicular to the other...

대략 6년 전

답변 있음
How to use xlswrite and Excel = actxserver('Excel.Application') together
|xlswrite| automatically closes the ACTX session at the end of the call. Try <https://www.mathworks.com/matlabcentral/fileexc...

대략 6년 전 | 2

| 수락됨

답변 있음
how can I convert EST time to GMt time?
Try using the 'TimeZone' property in the |datetime| function to re-interpret the input time in a new time zone. See here: <h...

대략 6년 전 | 1

답변 있음
Is there a program for automatic segmentation of a CT scan?
Matlab has a built-in App called |volumeViewer| starting in R2017a that looks pretty good. For earlier versions, check the Ma...

대략 7년 전 | 0

| 수락됨

제출됨


MousePanningExample
Simple template for incorporating mouse-bound axis panning in a gui.

대략 7년 전 | 다운로드 수: 2 |

Thumbnail

답변 있음
How to read text files from different sub folders in a folder ?
You can try the code below. It will do the same thing as Image Analyst's post, but is a little cleaner if you don't need any of...

대략 7년 전 | 2

답변 있음
How to read Multiple CSV files in multiple sub folders
This may get you started: mainFolder = uigetdir(); % Selectyour Main folder [~,message,~] = fileattrib([mainFolder,'\...

대략 7년 전 | 0

답변 있음
How can I import multiple .csv files that are in separate folders
Try this: !!Careful, this will find ALL csvs in a folder!! You can further narrow down, e.g. by filename, using additional l...

대략 7년 전 | 0

답변 있음
how to generate a filter code including coefficients?
Qingshan, Based on you question, it seems like you really have 2 needs: #1) Calculate the filter coefficients for a partic...

대략 7년 전 | 0

답변 있음
Hi, I want to plot 4 y-axes against x-axis. How do I plot it?
Check out the excellent <https://www.mathworks.com/matlabcentral/fileexchange/9016-addaxis |addaxis|> function by <https://www.m...

대략 7년 전 | 0

답변 있음
Drawing the x-axis at y=0
For posterity, this has been fixed in the HG2 Update. Linked below since this thread is currently the top search result on the ...

대략 7년 전 | 0

문제를 풀었습니다


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

7년 초과 전

답변 있음
How can I install an App simultaneously with a toolbox?
Since no one answered, I'll leave this for posterity. To have an APP install automatically with a distributed TOOLBOX, simply...

7년 초과 전 | 0

| 수락됨

답변 있음
Change static box text based on edit box selection
Hey Drew, see if this example helps you out! Just copy the whole thing, save it and run it. function MyGUI f = fi...

거의 8년 전 | 0

질문


Any tutorials on Deploying a toolbox?
I'm interested in deploying a moderate-sized library of functions and it seems that a 'toolbox' may be the best option. One qui...

거의 8년 전 | 답변 수: 0 | 0

0

답변

답변 있음
How can I match multiple contents of an array to a separate single array?
Check out the |unique| command. <http://www.mathworks.com/help/matlab/ref/unique.html http://www.mathworks.com/help/matl...

거의 8년 전 | 0

답변 있음
is there image dataset for (lying - sleeping) activity recognition??
Try this: <http://www.mathworks.com/matlabcentral/fileexchange/49893-code-for-webinar--signal-processing-for-machine-learning...

거의 8년 전 | 0

답변 있음
Exporting multiple iterations of inputdlg user input into excel file
You're really close! Try this as an example: N = 3; loopData = cell(N,1); for ii = 1:N userDlg = inputdlg...

거의 8년 전 | 0

답변 있음
Which computer programming language are MATLAB R2015b and R2016b written in?
Matlab is mainly written in Java (interface etc). Many of the operations are written in C or C++. The matrix stuff is based on...

거의 8년 전 | 2

답변 있음
How to find two points with same x coordinate when two graphs are plotted in a same plot?
Give this a shot: n = 1% The number of identical 'x' coordinates you want to find, delete "n" to find them all idx...

거의 8년 전 | 0

답변 있음
Searching a webpage for 'href="'
Try <http://www.mathworks.com/help/matlab/ref/regexp.html regexp> . For example: exp = '<href="\w+">' matches = regexp(...

거의 8년 전 | 0

답변 있음
Intersection of parabola.
Instead of |min|, try |sort| to get the values and indices of your logical condition. For ex. [sVals, sIdx] = sort(int...

거의 8년 전 | 0

답변 있음
Read mixed formate Data from Text Files
Since your data does not have consistent number of columns in each loop, |textscan| (the whole file at once) may not work. If...

거의 8년 전 | 0

답변 있음
How can i convert euclidean distance into real world distance?
I'm not exactly sure what you mean when you say "real world distance". If you mean that the euclidean distance is in x,y,z co...

거의 8년 전 | 0

답변 있음
How to print normalized cross correlation value in gui?
* IF YOU DON'T HAVE A PLOT: Try placing a textbox in your gui. ccvalue = "YOUR NUMBER HERE" uicontrol(gcf,'textbox','Str...

거의 8년 전 | 0

더 보기