Need a kind soul for help, Changing Cell array data with greater value into another cell array.

1 view (last 30 days)
Hello I am very confused and have been using over 5 hours to figure 1 simple task out in matlab.
it is to move or Copy the numbers higher than 230 into a new Column. file attached
here is the data. i can make the data to be either String or Double. so Either works.
please help so the numbers larger than 230 is copied in column next to it. this is so i can make a plot.
thanks alot

Answers (2)

Joseph Cheng
Joseph Cheng on 18 Mar 2014
Edited: Joseph Cheng on 18 Mar 2014
simple enough,
I would suggest using the find() function.
for example:
over230 = find(V>230); %get the index of V where the values are over 230.
V=[V zeros(length(V))]; %need some zero padding as the length of over230 is shorter than V.
V(1:length(over230),2) = V(over230); %copy values V(over230) into second column
  3 Comments
awda
awda on 18 Mar 2014
but this creates another cell, with triple as much data. starting at 1 ending at the value of 11000 which my highest Voltage is 233 or something.
and the errors:
Out of memory. Type HELP MEMORY for your options.
Error in test1 (line 36) V=[V zeros(length(V))]; %need some zero padding as the length of over230 is shorter than V.
Have u tried to run the data i uploaded into ur matlab? maybe my matlab is new or i dont know
Joseph Cheng
Joseph Cheng on 18 Mar 2014
I have ran your V.mat and i have no issue. I would say since it is a memory issue you probably want to switch to 64 bit Matlab if you can. Since all you said was to copy values to second column you did not specify anything more I supplied a solution with very little information. So you still want to keep time sensitive values to your plots yet keep the memory down of only values over 230. Then why don't you try this very simple solution
figure,plot(over230,V(over230))

Sign in to comment.


awda
awda on 18 Mar 2014
By the way when you use the function called find(). u will get the matlab to start from 1 and count upto the value the cell array has. so its not an option?

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Tags

No tags entered yet.

Community Treasure Hunt

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

Start Hunting!