add number to cell
Show older comments
I have A={[1,2,4],[2,3,4],[2,4,5],[4,5,6,9,10,11],[4,7,9],[7,8],[6,12,13]} and ref={[1],[1],[1],[3],[2],[1]} (ref means that which index in A is chosen as reference). So according to each referance ang is calculated in each array. ang={[0; -0.08;-0.17],[0;-0.14;0.09],[0;-0.09;-0.05],[0.05; 0.09; 0; -0.02;-0.03;-0.03],[0;-0.02;-0.01],[0.004;0],[0;-0.02;-0.01]}
[0; -0.08;-0.17] means that first elemnt is chosen as referance so -0.08 is calculated according to 1 as reference.
As I want to change all referance according to 1.
[1,2,4]=[0; -0.08;-0.17] this one is not changing
[2,3,4] as 2 is reference here so I need scale up all element to -0.08 (add all element to -0.08)
[2,3,4]=[0+(-0.08);-0.14+(-0.08);-0.09+(-0.08)] =[-0.08;-0.22;-0.17]
for [2,4,5] as reference is not changing only need to add all to -0.08
[2,4,5]=[0;-0.09+(-0.08);-0.05+(-0.08)]=[0;-0.17;-0.13]
for [4,5,6,9,10,11] as 6 is reference, I need to scale up. we know that ang(4)should be-0.17 and ang(4) here is 0.05. need to change 0.05 to -0.17 .
(0.05+(X)=-0.17, X=-0.22) need to add all to -0.22
[4,5,6,9,10,11]=[0.05+(X); 0.09-0.22; 0+(-0.22); -0.02+(-0.22);-0.03+(-0.22);-0.03+(-0.22)] =[-0.17;-0.13;-0.22; -0.24;-0.25;-0.25]
for [4,7,9] ang(4) should be -0.17. so add all to -0.17
[4,7,9]=[0+(-0.17);-0.02+(-0.17);-0.01+(-0.17)]=[-0.17;-0.19;-0.18]
for [7,8] from the above we know ang(7) should be -0.19 so add all to -0.19
[7,8]=[0.004+(X);0+(-0.186)]=[-0.19;-0.186] 0.004+(X)=-0.19 X=-0.186
[6,12,13]=[0+(-0.22);-0.02+(-0.22);-0.01+(-0.22)]
result should be [1,2,3,4,5,6,7,8,9,10,11,12,13]=[0,-0.08,-0.22;-0.17;-0.13;-0.22;-0.19;-0.186; -0.18;-0.25;-0.25]]
I also try this
tmp = cellfun(@(c,p,m)c+c(p(m)),ang,A,ref,'uni',0);
but it is not working
11 Comments
Adam Danz
on 31 Jan 2019
I'm having a hard time following this. For example, what does this mean?
I want to change all referance to 1. (ang{1}(2)= -0.08)
Could you cut-and-paste a clean version of your code with comments in the code, using the formatted code option (press alt+enter)?
Stephen23
on 31 Jan 2019
Note strg == ctrl on English keyboards.
Adam Danz
on 31 Jan 2019
@jan, I was just refering to the keyboard shortcut for inserting formatted code. 

Rik
on 31 Jan 2019
@Adam, you might be surprised to know that ctrl-E also does that. You can use it to toggle between modes, while alt-enter will add a new line in code mode.
Adam Danz
on 31 Jan 2019
@Rik
nice
Didn't know
that!
NA
on 1 Feb 2019
As stated by Adam and Rik, it's really not hard to press CTRL+E or ALT+ENTER or whatever key combination is required on your OS, or simply click on the
button to format the code as code.
button to format the code as code.I've done this for you this time, but please make an effort as this makes your post much easier to read.
The latest code you've posted would work if ref had 7 elements like the other cell arrays. That's exactly what the error message tells you.
I assume you didn't write that code. I doubt that it does what you want but your question is really not clear. I understand most of it but I really don't get the "I need scale up all element to -0.08 (add all element to -0.08)". Where does that -0.08 come from? Same for "we know that ang(4)should be-0.17". Do we? Why?
"and ang(4) here is 0.05"
No, it's {[0.05; 0.09; 0; -0.02;-0.03;-0.03]}
NA
on 1 Feb 2019
Accepted Answer
More Answers (1)
Jan
on 1 Feb 2019
I strongly recommend to avoid the smart and neat cellfun, if its compact notation confuses the programmer. A simple loop might look less professional, but it can save hours for debugging.
tmp = cell(size(ang));
for k = 1:numel(A)
tmp{k} = ang{k} + ang{A{ref{k}}};
end
In your cellfun approach, A is treated as 2nd input, such that the anoynmous function
@(c,p,m)c+c(p(m))
defines p=A{k}, but this is not wanted. I assume you want:
tmp = cellfun(@(c,m) c+c(A(m)), ang, ref, 'uni', 0);
Anonymous functions cannot be debugged directly, but the suggested loop can. So do not make the programming harder than needed.
10 Comments
Adam Danz
on 1 Feb 2019
@Naime, Jan has converted your cellfun() to a loop which is more readable and easier to debug. The reason you're getting an error on the first iteration is because the last term is producing 3 outputs:
K>> ang{A{ref{k}}}
ans =
0
-0.08
-0.17
ans =
0
-0.14
0.09
ans =
0.05
0.09
0
-0.02
-0.03
-0.03
Those outputs could be put into a vector which would prevent the error but I'm not sure this is what you are really trying to do (it's still highly unclear to me).
cell2mat(ang(A{ref{k}})')
ans =
0
-0.08
-0.17
0
-0.14
0.09
0.05
0.09
0
-0.02
-0.03
-0.03
Adam Danz
on 2 Feb 2019
The numbers on the left are the loop iterations. Is that correct?
So, the result of the 3rd iteration is -0.22. Please explain why the 3rd iteration equals -0.22 and why the 4th equals -0.17. I'm still not seeing the pattern here.
NA
on 4 Feb 2019
@Naime: Reading your previous comment, I'm getting such confused, that I loose the overview completely. Too many numbers and fragments. So I'm not sure, what you want to achieve. The loop is short and easy, and I'm convinced, that you can modify it, when you know, what you want.
Maybe if you post the input data with one input only, and with the wrong current result and the wanted one, I can understand, what the problem is. Forn whihc k does the code reply an unexpected result?
By the way, in your code, the variable A is used only to determine the size, but the elements are not used.
I'm lost in the original question already:
[7,8]=[0.004+(X);0+(-0.186)]=[-0.19;-0.186]
0.004+(X)=-0.19 X=-0.186
[6,12,13]=[0+(-0.22);-0.02+(-0.22);-0.01+(-0.22)]
result should be
[1,2,3,4,5,6,7,8,9,10,11,12,13]=[0,-0.08,-0.22;-0.17;-0.13;-0.22;-0.19;-0.186; -0.18;-0.25;-0.25]]
I do not undestand, what this notation means.
Adam Danz
on 4 Feb 2019
Also, when you delete previous comments, it becomes more difficult to follow the thread.
NA
on 4 Feb 2019
NA
on 5 Feb 2019
Jan
on 6 Feb 2019
The result of n=find(new_ang~=0) is not used anywhere, so simply omit it. You can abbreviate:
if any(ismember(A{k},first_element))==1
to
if any(A{k} == first_element)
Then see my answer.
Categories
Find more on Array Geometries and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!