Discrete variable in optimization

조회 수: 1 (최근 30일)
kartik pandya
kartik pandya 2015년 8월 24일
댓글: kartik pandya 2015년 8월 24일
Dear sirs, I have a variable x whose min. and max value are 0.900 and 1.00. I have randomly generated its value between its min and max limits. suppose the ans=0.984. I want that the ans should be discrete in the step of 0.025 ie. only five ans. are feasible. They are 0.900, 0.925, 0.950, 0.975 and 1.000. so i want to know matlab command/program/equation using which i can convert the ans(=0.984) into nearest discrete value(i.e.0.975). Thanks in advance

채택된 답변

Walter Roberson
Walter Roberson 2015년 8월 24일
floor((x - 0.900)/0.025) * 0.025 + 0.900
  댓글 수: 1
kartik pandya
kartik pandya 2015년 8월 24일
dear sir Thanks for your reply and nullifying my doubt.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by