Nested Structure in cellfun

조회 수: 8 (최근 30일)
Ozge Moral
Ozge Moral 2016년 7월 28일
편집: Ozge Moral 2016년 7월 29일
I have a structure that store lots of variable. I want to find function value of these x values. But there is wrong result. My variables :
StartingValue.x ={};
StartingValue.fn =[];
My function is
f = @(x) sin(5.1*pi.*x+0.5).^6;
I created a nested structure and i want to function value of this variable.
StartingValue(1).Next(1).x
= Columns 1 through 6
[0.0025] [0.0075] [0.0125] [0.0175] [0.0225] [0.0275]
Columns 7 through 10
[0.0325] [0.0375] [0.0425] [0.0475]
To find function values i wrote this code:
StartingValue(1).Next(1).fn=cellfun(f,StartingValue(1).Next(1).x)
ans =
Columns 1 through 8
0.0185 0.0385 0.0716 0.1213 0.1899 0.2781 0.3838 0.5023
Columns 9 through 10
0.6263 0.7464
This result is not correct according to mathematical calculation. I couldn't find what mistake i did. I used cellfun because of x variable is a cell array. I didn't understand whether problem is nested structure or cellfun. If my question is not clear, i can post all code.

채택된 답변

Guillaume
Guillaume 2016년 7월 28일
The result is entirely correct. Perhaps you're assuming that sin works in degrees? If that is the case, use sind instead of sin.
By the way, there is no reason to use a cell array for your example, a vector would make the code a lot simpler:
StartingValue(1).Next(1).x = [0.0025, 0.0075, 0.0125, 0.0175, 0.0225, 0.0275, 0.0325, 0.0375, 0.0425, 0.0475]
f = @(x) sin(5.1*pi.*x+0.5).^6;
StartingValue(1).Next(1).fn = f(StartingValue(1).Next(1).x)
Also note that the fn field name is misleading since its content is not a function but a vector.
  댓글 수: 5
Guillaume
Guillaume 2016년 7월 29일
There's a factor of 10 difference between the values generated by your initialization function, and the values in your original post:
0.025 vs 0.0025
This explains the vastly different results.
Ozge Moral
Ozge Moral 2016년 7월 29일
편집: Ozge Moral 2016년 7월 29일
i'm going to show my eyes to doctor! Thanks a lot.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by