Forum: help


Porownania finansowe [ Reply ] By: fincasa Magda on 2020-05-14 14:14 | [forum:47777] |
<p>W sieci da się wyszukać bez najmniejszego kłopotu parę o ile nie paręnaście porównywarek kredytowych. W rzeczywistości nie ma łatwiejszego wybierania kredytu dla nas. Definiujemy kwotę, czas kredytowania i porównywarka kredytowa pokazuje nam kilkanaście propozycji kredytowych. Na dodatek, możemy sobie wybrany kredyt zamówić przez kontakt z doradcą. Wszystko wydaje się łatwe tylko że...</p> <p>Często przy składaniu wniosku dowiadujemy się, że nie dostaniemy kredytu ponieważ nie spełniamy warunków kredytodawcy.</p> <p>Niestety porównywarka kredytowa wyłącznie konfrontuje propozycje, sugeruje który kredyt jest najtańszy, odsłania zatajone szczegóły oferty kredytowej, których w reklamie danego banku nie można znaleźć, niemniej jednak porównywarka kredytowa nie wyznacza, iż w danym banku kredyt na pewno otrzymamy.</p> <p>Każdy bank ma swoją własną politykę, w jednym nasza zdolność kredytowa będzie odpowiednia do otrzymania kredytu, w innym jednakże nie.</p> <p>Jak składać wniosek o kredyt aby zmniejszyć prawdopodobieństwo odrzucenia wniosku? Warto skorzystać z pomocy doradcy kredytowego, z reguły w większych porównywarkach kredytowych jest możność skorzystania z pomocy doradcy kredytowego w pełni gratis. Porównywarki kredytowe są bardzo wygodne, warto z nich korzystać wybierając kredyt, należy jednak pamiętać, że to bank rozstrzyga czy udostępni danej osobie kredytu.</p> https://ecasa.pl/pozyczki-prywatne-pod-weksel-produkty.html/ |
RE: Linear Programming [ Reply ] By: Arne Henningsen on 2015-06-16 20:13 | [forum:42309] |
If you successfully used linear programming with matlab, you must have specified an objective function in matlab but you did not specify an objective function in the mathematical description of your problem in this forum. Please specify your objective function. |
RE: Linear Programming [ Reply ] By: Wecsley Prates on 2015-06-12 20:34 | [forum:42304] |
I did it in matlab. But I could like make in R too. In matlab i can put that restrictions and to resolve using linprog. Thanks for you time. |
RE: Linear Programming [ Reply ] By: Arne Henningsen on 2015-06-12 20:22 | [forum:42303] |
It seems that your problem is mathematical infeasible so that no software can solve it (and "linprog" is anyway not the right software to solve a system of equations). |
RE: Linear Programming [ Reply ] By: Wecsley Prates on 2015-06-12 15:35 | [forum:42302] |
Hi Arne. .. I do not can do that because my matrix A is singular. I try this. ...but i descover this thing In my matrix . I try use the generalized inverse but give error too. In linprog i but that restrictions for to resolve but i do not know how do that. Att |
RE: Linear Programming [ Reply ] By: Arne Henningsen on 2015-06-12 12:31 | [forum:42301] |
Dear Wecsley In matrix notation you have: A x = b where A is a known matrix of dimension 4 * n, x is a vector with n unknown elements and b is a vector of 4 known elements, right? You can only *solve* the above equation for x if n=4. Then you get: x = A^(-1) b You can calculate this by the R command: solve( A, b ) If n<4, there is in most cases no solution. If n>4, there is in most cases an infinite number of solutions. Please note that linear programming is an optimisation procedure: https://en.wikipedia.org/wiki/Linear_programming In your model description, I cannot see any optimisation. Best regards, Arne |
RE: Linear Programming [ Reply ] By: Wecsley Prates on 2015-06-09 23:07 | [forum:42298] |
Sorry. I was wrong on one of the restrictions. does not exist sum_j(X_j)=1. |
Linear Programming [ Reply ] By: Wecsley Prates on 2015-06-09 21:31 | [forum:42297] |
Hi...how are you? I want to solve a system of equations as described below. I have the following equations. a11X1 + a12X2 +...+ a1nXn = b1 a21X1 + a22X2 +...+ a2nXn = b2 a31X1 + a32X2 +...+ a3nXn = b3 a41X1 + a42X2 +...+ a4nXn = b4 or equivalently a11X1 + a12X2 +...+ a1nXn - b1 = 0 a21X1 + a22X2 +...+ a2nXn - b2 = 0 a31X1 + a32X2 +...+ a3nXn - b3 = 0 a41X1 + a42X2 +...+ a4nXn - b4 = 0 with restriction b1+b2+b3+b4 = 1, where 0 < bi < 1, for all i=1,2,3,4. 0 < aij < 1, for all i=1,2,3,4 and j=1,...,n. sum_j(Xj) = 1, for all, j=1,...,n. In this case, i have B = c(b1,b2,b3,b4) is a vector. A = [ a11 a12 a13...a1n a21 a22 a23...a2n a31 a32 a33...a3n a41 a42 a43...a4n ] Is a matrix. and X = (X1,X2,...,Xn) are my variables. I want to find the valeus of the vector X. How can i resolve using the linprog in the software R? Thanks. |