Function requires number as input; I want to enter a variable though!

1 Ansicht (letzte 30 Tage)
Sean Farrell
Sean Farrell am 13 Jan. 2017
Kommentiert: Sean Farrell am 15 Jan. 2017
Hi everyone! So, I am currently working on a code that uses the rand function. I have a variable set to a particular value, and the value changes based on the user's input to the function. I want to use this variable in the rand function. However, when I run the code, an error comes back stating that I can only enter numbers into the rand function, not variables. Any idea how I can get around this?
Thank you in advance!

Antworten (1)

KSSV
KSSV am 13 Jan. 2017
% rand column vectors
col = 3 ;
rand(col,1)
% rand row vectors
row = 4 ;
rand(1,row)
% matrix of rand
rand(row,col)
rand needs only number as input. If you still face problem, show the code how you have called it.
  6 Kommentare
Image Analyst
Image Analyst am 15 Jan. 2017
Like this:
function A = catalyst_dispersion(b)
total = 1
amount = round(b*total);
random = rand(amount, 1);
Sean Farrell
Sean Farrell am 15 Jan. 2017
Thank you KSSV and Image Analyst, this is exactly what I was looking for!! I appreciate the help!
Best, Sean

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by