How to fix the range of a variable?

1 view (last 30 days)
Sayantan Saha
Sayantan Saha on 20 Apr 2021
Answered: David Hill on 20 Apr 2021
problem.CostFunction = @(x) MinPe(x, Biv, Cell);
I have this Matlab fucntion where x is a variable. The value of x is an array of 24 digits which only consist 0's and 1's. x is automatically selecting this input.
I want expand the range of x i.e. the array should not only consists 0's and 1's but within the range of 0 to 3.
for example, in case of 5 digits:
x is taking a value like [0 1 0 1 1]
but x should take a value like [0 3 2 1 3]
Could you please tell me the process to do it?
  1 Comment
Jonas
Jonas on 20 Apr 2021
is this a question of counting system, so you want to e.g. convert the binary number system (000, 001, 010, 011, ...) to the system which can count up to three (000, 001, 002, 003, 010, 011, ...)?

Sign in to comment.

Answers (1)

David Hill
David Hill on 20 Apr 2021
Not clear what the question is, but if you just want to randomly sectect 24 digits from 0-3, then:
x=randi(4,1,24)-1;

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!