help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

How modifying the input of a function : from (unique) vector to matrix ?


From: Jaouad Daoudi
Subject: How modifying the input of a function : from (unique) vector to matrix ?
Date: Thu, 29 Nov 2018 10:51:18 -0500

Hi,

I have a script that compute an index. The input of the function is:

(i) the vector of weight of each player (l) and;
(ii) the quota (limit).

It works well for a single vector. However, I need help to modify the code in order to compute the index for several cases (several vectors) (the quota "limit" stay always invariable that we specify in the beginning (ex. 50 or 40 or 20...)). In other words, I want that the input will be:

(i) the Matrix summarizing several vectors of weight of each player (l) and;
(ii) the quota (limit).

Example:
Instead of doing the computation on l1 = [20 30 15 25 10] then on l2 = [49 2 49 0 0], then l3 ...., I would like that my input in the function will be a matrix with several rows like for example :

(i) L = [20 30 25 25; 49 2 49 0 0; 20 30 15 25 10; 49 2 49 0 0].
(ii) limit = 50

Thank you in advance for your help and for you support.
(Please, see the attached script)

Attachment: shapley.txt
Description: Text document


reply via email to

[Prev in Thread] Current Thread [Next in Thread]