How can I ask Matlab to adjust a parameter in an equation until the answer becomes equal with a predetermined input value?
4 views (last 30 days)
Show older comments
I am trying to compare two heights, a trial and calculated. The trial height of the object is an input to the program, while the program calculates the actual height but I want matlab to compare the both heights by adjusting a parameter in the height equation until both heights become equal. Then, matlab prints the final value of the parameter adjusted in the height equation. Please, can anybody help as I am a novice with very weak programming skills? Thank you.
I don't have any working code as I am still learning from this community hub.
Lewis is my name, a student
2 Comments
HWIK
on 25 Nov 2021
You might want to try and detail your question a bit further. Like, how does the "program" calculate the actual height?
Accepted Answer
Stephen23
on 25 Nov 2021
Edited: Stephen23
on 25 Nov 2021
Define a simple anonymous function with one input which calculates the difference between your two heights, and supply that function as the first input to FZERO. FZERO will adjust that input until the output (i.e. difference) is zero, exactly as you request.
V = 23;
ht = 5;
fh = @(A) ht - V./A;
A = fzero(fh,[0.2,100])
V./A
4 Comments
Stephen23
on 25 Nov 2021
Edited: Stephen23
on 25 Nov 2021
"I have tried using different inputs for ht and observed, the program only works for one particular value of ht."
It works for me. Lets try it:
V = 23;
ht = 6; % different height value!!!
fh = @(A) ht - V./A;
A = fzero(fh,[0.2,100]) % gives a different area!!!
V./A % checking: gives the input height.
Everything seems to be working as expected.
As you did not show the code you tried I have no idea what you did wrong.
More Answers (1)
HWIK
on 25 Nov 2021
I'm not sure I quite understand the description but here is my go at it:
function Actual_area = call_it_what_you_want(V,ht,Areas)
[~,idx] = min(abs(ht-V./Areas));
Actual_area = Areas(idx);
end
This will take the value of A that gives the closest height to the value of ht
1 Comment
Stephen23
on 25 Nov 2021
Lewis Tamuno-Ibuomi's incorrectly posted "Answer" moved here:
Thank you Oliver. Did you try any demonstration to test the codes? I would not mind a rough demonstration. Thanks.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!