Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

optimisation of simple equation

조회 수: 1 (최근 30일)
kevin
kevin 2011년 10월 14일
마감: MATLAB Answer Bot 2021년 8월 20일
let say a=1:1:10 b=1:1:20 c:1:1:15 and the equation is:
k= (a/b)*cos(c)
and i need to get the value of a b and c when k is min or max, how do you do it?
thx

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2011년 10월 14일
% determination of all combinations of values of the vectors a,b,c -> [a(:) b(:) c(:)]
[a b c] = meshgrid(1:10,1:20,1:15 );
% definition of all possible values of 'k'
k = a(:)./b(:).*cos(c(:));
% min and max values of 'k', [i1,i2] - indexes of the min and max values
[v1,i1] = max(k);
[v2,i2] = min(k);
% first row of the 'out' values of the 'a','b' and 'c' when 'k' -max, second - 'k' - min
out = [a(i1) b(i1) c(i1);a(i2) b(i2) c(i2)]
  댓글 수: 5
kevin
kevin 2011년 11월 27일
i wrote
[a b r t p] = meshgrid(1:0.1:4,1:0.1:4,1.2:0.1:2.2,-20:0.5:80,0:0.5:90);
do you see any error?
kevin
kevin 2011년 11월 27일
i am think i got error for it was because meshgrid only support 3 varibles ie 3d

Community Treasure Hunt

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

Start Hunting!

Translated by