Effacer les filtres
Effacer les filtres

How to form a matrix as our requirements??????

2 vues (au cours des 30 derniers jours)
VIJAY
VIJAY le 25 Avr 2020
Commenté : VIJAY le 26 Avr 2020
Hello
I wanna create a matrix as size is 50rows 6 columns.The sum of each row is 100. the value limits is 0 to 100 its may be float value .For example of one row is
[20 40 10 5 5 20]

Réponse acceptée

Ameer Hamza
Ameer Hamza le 25 Avr 2020
x = rand(50, 6);
x = x./sum(x,2)*100;
Result
>> sum(x,2)
ans =
100.0000
100.0000
100.0000
..
..
..
100.0000
100.0000
  4 commentaires
Ameer Hamza
Ameer Hamza le 26 Avr 2020
This is already in quite the simplest form. Any further simplification can only be done by defining your own function.
VIJAY
VIJAY le 26 Avr 2020
Ok sir thanks for your kind reply

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by