0
votes
1answer
44 views

Using the if statement and for loop to write a program that generates N random numbers (and more)

The question: Write a matlab program that i) generates N<=20 random numbers in the interval [a,b], where N, a, b are entered via keyboard My attempt: a = input ('a=') b = input ('b=') N = ...
1
vote
3answers
28 views

Random Number in Octave

I need to generate a random number that is between .0000001 and 1, I have been using rand(1) but this only gives me 4 decimal points, is there any other way to do this generation? Thanks!
-1
votes
1answer
51 views

Random angle in matlab [closed]

I'm trying to write a matlab program which is able to a random walk, but each step/vector has the same length and the thing that determines the direction is a "random" angle. The angle is not quite ...
0
votes
1answer
37 views

matlab more efficient random links creation

I have this section to make some random links in groups. Can I make it more efficient? Any idea? Thanks. n=[10 ;10 ;10]; no_of_groups=size(n,1); for k=1:no_of_groups if k==1 ...
-5
votes
1answer
39 views

Generate randomly centers of clusters [closed]

Say I have two clusters that I would like to randomly generate their cluster center as follows: rand(1,2) I saw a code that uses the following for such generation: rows*rand(1,2) Why do you think ...
0
votes
1answer
41 views

Uniform Random Number blocks in my simulation model

I've used 2 Uniform Random Number blocks in my simulation model, but every time I run the program they generate last numbers (exactly the same). I need to test the model with new generated numbers. ...
3
votes
1answer
62 views

Multivariate Random Number Generation in Matlab

I'm probably being a little dense but I'm not very mathsy and can't seem to understand the covariance element of creating multivariate data. I'm after two columns of random data (representing two ...
4
votes
4answers
157 views

How to generate random matlab vector with these constraints

I'm having trouble creating a random vector V in Matlab subject to the following set of constraints: (given parameters N,D, L, and theta) The vector V must be N units long The elements must have an ...
3
votes
3answers
107 views

Generate 64bit random integers in Matlab

I am trying to write a matlab function that generates a binary file containing among other things a series of 64 bit random integers. These should be of good quality, which is why I'd like to use a 64 ...
1
vote
0answers
125 views

java version of bat algorithm in matlab

I have a Matlab code of bat algorithm and I write java version of this algorithm Bat algorithm is a simple optimization algorithm for finding the minimum of any function here is the matlab code and my ...
2
votes
1answer
62 views

Select data based on a distribution in matlab

I have a set of data in a vector. If I were to plot a histogram of the data I could see (by clever inspection) that the data is distributed as the sum of three distributions; One normal distribution ...
0
votes
1answer
59 views

Random number - Choose seed

because of one project I have to make use of pseudo random numbers with normal distribution. To this respect, I'm generally putting this down: nn_u = ...
8
votes
3answers
133 views

Efficiently generating unique pairs of integers

In MATLAB, I would like to generate n pairs of random integers in the range [1, m], where each pair is unique. For uniqueness, I consider the order of the numbers in the pair to be irrelevant such ...
-1
votes
1answer
66 views

Matlab 10x10 random number buttons

I am trying to create a GUI figure with 100 push buttons, arranged in 10 rows and 10 columns. The numbers from 1 to 100 need to be randomly assigned to the buttons and displayed in white. However, I ...
0
votes
1answer
95 views

filling a matrix with random integers from a range according to a rule

I'm using the matrix as an initial population for multiobjective optimization using NSGA-II in matlab. The size of my chromosome vector,(C), is 1x192 and each gene must be within the range ...
1
vote
1answer
93 views

Simulate 5 die roll for Yahtzee game

I'm trying to simulate rolling 5 dice for a Yahtzee game I'm writing in MATLAB, but I'm running into the issue that my code doesn't seem to generate any yahtzees after running 1000+ iterations. Am I ...
0
votes
0answers
82 views

Scale simulated time series to approach given Gaussian process

I am not sure if this question will be a little off-topic on this forum, that I will give it a try anyway By using MATLAB, I'm on my way to generate a turbulent wind field. This wind field is ...
1
vote
3answers
163 views

Generate random values between two set numbers

My task is to generate 5000 random numbers between -2 and 5 then count up how many of those values are between 2 and 3 This is what I have so far: randNums=rand(1,5000); %Generate 5000 random values ...
0
votes
1answer
163 views

Programming an lcg in Matlab

I'm trying to solve the questions below in Matlab using a linear congruential generator. My line of code for the function is shown below. m is basically the maximum value of the range of values you ...
3
votes
3answers
94 views

Matlab: Getting Random values from each column w/o zeros

I have a 2d matrix as follows: possibleDirections = 1 1 1 1 0 0 0 2 2 0 3 3 0 0 0 0 4 0 4 4 5 5 5 5 5 I need ...
2
votes
1answer
67 views

Adding a random number to the matrix MATLAB

I want to generate 100x1 matrix with 3 numbers -1,1 and 0. I want to be able to control how much of 1's and -1's are assigned. I tried using Y = rand(10,1)<0.1 but this only gives me 0's an ...
1
vote
3answers
93 views

Matlab - Generating random coordinates for a matrix

I need to create a list (of size n) of random, non-repeating set of coordinates on a matrix of predefined size. Is there a fast way to generate this in Matlab? My initial idea was to create a list ...
0
votes
1answer
39 views

MATLAB : Get k random subscripts with condition from a Matrix

I'd like get k random subscripts from A to be used in a C++ program with currently load data from a file given a set of subscripts. I've a MxN matrix A with double values and a Mx1 matrix B with ...
2
votes
1answer
255 views

Comparing the Mersenne Twister in Java and matlab

I'm comparing the mersenne twister in Java and matlab. I'm using the same seed in both. My problem is that when i print out ten numbers from each number generator (Mersenne Twister running in Java and ...
0
votes
1answer
415 views

Generating random weighted adjacency matrix in MATLAB

I would like to create a random adjacency matrix in MATLAB such that the total sum of weight is equal to the number of edges. Finally find the Laplacian matrix using L = diag(sum(A)) - A and then ...
1
vote
2answers
285 views

How to generate uniformly distributed random floating point numbers on entire possible range in matlab

I am trying to generate an array of uniformly distributed floating point values in single precision in MATLAB. I want to generate all numbers in the range +/- (2-2^-23)*2^127 which represents the ...
7
votes
2answers
96 views

Is there a statistical difference between generating many random vectors vs a single random matrix

Is there a statistical difference between generating a series of paths for a montecarlo simulation using the following two methods (note that by path I mean a vector of 350 points, normally ...
1
vote
4answers
1k views

Generate white noise with amplitude between [-1 1] with Matlab

I'm using the Matlab function Y = WGN(M,N,P) to generate white noise with Gaussian distribution. This function uses a power value (dB Watts) to calculate the amplitude of the output signal. Since I ...
-2
votes
2answers
715 views

Matlab, matrix containing random numbers within specified range

I am absolutely new to Matlab and am trying to create an m-by-n matrix containing numbers within a specified range (ie. between -1 and 1). Is there an equivalent function to rand(m, n) where I can ...
-2
votes
0answers
312 views

how to generate random numbers within a range that have a specific mean (matlab)

I'd like to be able to generate multiple sets of random numbers all within the same range and that have the same mean. The same standard deviation would be a plus. I do not want a normal distribution. ...
4
votes
2answers
101 views

How can I use MATLAB program to create a new column array with random arrangements of 1, 2 and 3? [duplicate]

Possible Duplicate: Generate random number with given probability matlab I need to create a column vector with random assignments of the number 1, 2 and 3. However i need to be able to ...
3
votes
3answers
241 views

Generating a random number with low precision MATLAB

I want to generate a large number of random numbers (uniformly distributed on the interval [0,1]). Currently the generation of these random numbers is causing my program to run quite slowly, however ...
0
votes
3answers
176 views

Matlab function for creating random number satisfying constraints

As an input I have two number x and y. x>y. I want to create exactly y non-zero random number which their sum will be equal to x. I know randi([min max]) function . Can you help me?
1
vote
1answer
139 views

MATLAB Array Iteration & Fieldname

I'm really struggling to do what I want with this so any help will be greatly appreciated. I'm looping through an array X number of times, displaying an array of images in a randomised manner. What I ...
0
votes
2answers
304 views

How to produce the following random variables? [closed]

Using MATLAB, you have to start with a uniform distribution between (0,1). You need to generate the following sequences of random variables: 1.Rayleigh distributed random variable. (a=0, b=1). ...
3
votes
2answers
671 views

Matlab, generate and plot a point cloud distributed within a triangle

I'm trying to generate a cloud of 2D points (uniformly) distributed within a triangle. So far, I've achieved the following: The code I've used is this: N = 1000; X = -10:0.1:10; for i=1:N j = ...
6
votes
3answers
500 views

Generate random number with given probability matlab

I want to generate a random number with a given probability but I'm not sure how to: I need a number between 1 and 3 num = ceil(rand*3); but I need different values to have different probabilities ...
2
votes
2answers
739 views

Matlab Coin Toss Simulation

I have to write some code in Matlab that simulates tossing a coin 150 times. I have to count how many times the coin lands on heads and create a vector that gives a running percentage of the heads. ...
0
votes
1answer
41 views

How to select and remove cells from a 2d matrix of cells in matlab

I have a 35x2 matrix (randomwords); and I have randomly selected 8 rows (rndm). What I need to do is remove the 8 selected rows from the randomwords matrix and save this new 27x2 matrix under a new ...
4
votes
1answer
155 views

Assigning randomly selecting and removing rows from a 2d matrix

I have a 35x2 matrix containing stimlui for a word memory experiment. With each run of my program I need to be randomly sampling 16 cells so that the experiment is always different. I have managed ...
3
votes
2answers
242 views

Randomly replace elements in matrix with a clumpy or aggregated method

in the MATLAB code below, the matrix B is created from matrix A by randomly replacing a portion of its elements (empty_x) with 6. Instead of replacing the values of empty_x elements randomly ...
1
vote
2answers
112 views

computational speed in a for loop

I have written a small loop in matlab to generate a random NxN matrix. The loop is tic for i=1:10000 u=rand(1,10000); tau(i,:)=d.*(u(1,:)-0.5); end toc I first tried the loop routine only ...
0
votes
3answers
201 views

Probability generation in Matlab

I want to create a probability generator that will pick between a certain amount of options, based on prior probabilities. For example, say that I want to randomly pick between A, B, and C, based on ...
0
votes
2answers
144 views

Randomly replace percentage of elements in matrix per existing values

is there a sensible way to replace x% of each value in matrix/vector with a new value, and have the the element(s) to be changed be selected randomly? That is, in A, if I wanted to change 20% of the ...
0
votes
3answers
249 views

Matlab: How to randomly permute and inverse permute a vector

I need to implement the following algorithm in Matlab. Suppose A = [3 4 1 9 5] permute A randomly say, A = [5 1 4 3 9] Add 2 to the first two elements: A = [7 3 4 3 9] permute A back, A = [3 4 3 9 ...
0
votes
3answers
142 views

randperm or shuffle two datasets at the same time

I have a previous question here and I think im running into a problem because I cant shuffle the sample data and the indices of sample data (idx) at the same time. I have a dataset called fulldata ...
1
vote
2answers
197 views

Controlled random number/dataset generation in MATLAB

Say, I have a cube of dimensions 1x1x1 spanning between coordinates (0,0,0) and (1,1,1). I want to generate a random set of points (assume 10 points) within this cube which are somewhat uniformly ...
1
vote
1answer
282 views

Generate several random values where the sum equals a specified criteria (matlab) [duplicate]

Possible Duplicate: Random numbers that add to 100: Matlab I am looking to do the following: Generate several random numbers between 10 and 50. Have the sum of the random numbers equal ...
0
votes
2answers
122 views

Is it feasible to generate a random number based on a list?

A = [8 1 5; 1 4 2; 7 5 2]; Max = 5 B = randi(Max); Right now I have a part of the code which generates a random number. I am looking to generate a random number from a list of numbers, in this ...
1
vote
1answer
148 views

Distribution in random function in Matlab

I use random function in matlab to produce an integer between [1, n] with random function. For example random('unid', n) produce every time a number between [1, n]. What if I want to change the ...

1 2 3