필터 지우기
필터 지우기

Particle tracking software error / "No appropriate method, property, or field 'addAll' for class 'msdanalyzer'."

조회 수: 6 (최근 30일)
Here's the code:
ma = msdanalyzer(2,'um','s');
ma = ma.addAll(CorrectedTracks);
Here's the error message:
No appropriate method, property, or field 'addAll' for class 'msdanalyzer'.
Error in Particletracking (line 124)
ma = ma.addAll(CorrectedTracks);
I've been puzzling over this for some time but can't gain any intuition of what this error message is telling me through my own analysis or through the similar questions on the forum. Could someone please explain what this error message is trying to tell me?
Let me know if you need any additional code.
  댓글 수: 1
Minhaz ur Rahman
Minhaz ur Rahman 2020년 3월 25일
Did you import the Tracks properly? You need to allow access of importTrackMateTracks from imageJ fiji plugin to MATLAB.I guess there is nothing stored in "Corrected Tracks". That's why you were getting this cerror message. you can recompute on the basis of any property defined in Corrected tracks.

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

채택된 답변

Ken Atwell
Ken Atwell 2018년 11월 23일
The error message telling you that there is nothing called addAll in the class msdanalyzer. I don't know anything about this class, but:
methods(ma)
properties(ma)
will tell you what is available.
If you downloaded this from https://www.mathworks.com/matlabcentral/fileexchange/40692-mean-square-displacement-analysis-of-particles-trajectories read the comments there, as others have had the same issue. Make sure you do not delete the "@" from the folder name. I downloaded the class and "addAll" is there:
Screen Shot 2018-11-23 at 4.30.29 PM.png

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by