I want to set a range of variable to three or four places of decimals
조회 수: 4 (최근 30일)
이전 댓글 표시
How can i set a range of variable to three or four places of decimals? I'm going to write a function of the variable and float a graph. I want to find optimal value under specific function with the variable.
댓글 수: 0
채택된 답변
John D'Errico
2020년 11월 26일
Are you asking to create a variable that only carries 3 or 4 digits of precision? You can't choose to set an arbitrary precision, unless you use a tool like my HPF, but that would take far more effort on your part to learn than it would help you, and it has limits.
At best, you can use single precision, giving you roughly 8 digits. And Cleve Moler has posted some tools for shorter prescision, but those tools will also be limited in which functions can use them.
Or, are you asking how to plot a function over a domain that varies over 3 or 4 orders of magnitude for a plot?
That is far easier, since you can use tools like logspace, or semilogx, etc. And of course, you can always work using logs.
댓글 수: 3
Walter Roberson
2020년 11월 26일
logspace(A, B, N) is the same as 10.^(linspace(A,B,N))
For example,
format long g
logspace(-2, 5, 3)
10.^linspace(-2,5,3)
You can do things like:
mat2str(10.^(-2:5))
but that does not restrict the range of the variable for optimization routines.
추가 답변 (1개)
Walter Roberson
2020년 11월 26일
I want to find optimal value under specific function with the variable.
The MATLAB minimizers such as fmincon() and ga() all accept an options parameter, and the options parameter permits you to set a function tolerance -- so that you could stop searching when the function is changing less than a certain value, instead of comtinuing on to try to find the absolute best position.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!