Sort

조회 수: 2 (최근 30일)
Salvatore Turino
Salvatore Turino 2012년 3월 20일
Hello i want to know if exist a function that generate numbers in a range that i want to fix. for example i need to generate 22 numbers in this range: 0.5000 and 0.600
can you help me? thank you
  댓글 수: 1
Aldin
Aldin 2012년 3월 20일
Here:
0.5:0.1/20:0.6

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

답변 (2개)

Aldin
Aldin 2012년 3월 20일
Here:
0.5:0.1/20:0.6
Beacuase: (0.6 - 0.5)/20
  댓글 수: 5
Oleg Komarov
Oleg Komarov 2012년 3월 20일
In my case is 22.
Geoff
Geoff 2012년 3월 20일
Oleg is correct: length( 0.5:0.1/20:0.6 ) is 21. You really should use linspace if you want a linear sequence with a specified number of elements. That's what it's there for.

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


Geoff
Geoff 2012년 3월 20일
You haven't really specified if you want a sequence or just a set of numbers. Picking up on your term 'generate', perhaps you meant this:
randarr = @(lo, hi, n) lo + (hi-lo) * rand(1,n);
data = randarr(0.5, 0.6, 22);
That creates a bunch of random numbers in your specified range. Note I've wrapped it in an anonymous function to give the same syntax as linspace.
  댓글 수: 1
Geoff
Geoff 2012년 3월 20일
Oops, just realised I specified that anonymous function incorrectly. Fixed.

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

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by