How to display values in array

3 views (last 30 days)
puja dutta
puja dutta on 26 Jun 2014
Commented: the cyclist on 28 Jun 2014
I calculated manhattan distance for two array i.e dwell time and meanDwellTime.
disp(dwellTime)
A=meanDwellTime
for i=1:1:3
p(i,1)=sum(abs(dwellTime(i)-a(i)))
kk=p(i,1)
end
But it gives output like
kk=0.0200
kk=0.0170
kk=0.0230
How can be it represented in array.
Like:- kk=0.0200 0.0170 0.0230
please help me.Its urgent

Accepted Answer

the cyclist
the cyclist on 26 Jun 2014
Use this instead
kk(i)=p(i,1)
  2 Comments
puja dutta
puja dutta on 27 Jun 2014
Edited: puja dutta on 27 Jun 2014
Thanks a lot . Can you please tell me how can i call the m file in callback of push button.I want to run m file that would be connected to the push button
the cyclist
the cyclist on 28 Jun 2014
I suggest you open that as a new question.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!