Community Profile

photo

ANURAG


Last seen: 2 mesi fa Attivo dal 2024

Followers: 0   Following: 0

Statistiche

  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
Linear programming code not showing the solution
=[1 1 1 0 0]; A=[2 3 -1 1 0; 3 -2 2 0 -1]; b=[4;1]; m=size(A,1); n=size(A,2); if n>m ncm=nchoosek(n,m); t=nch...

2 mesi fa | 0

Risposto
Linear programming code not showing the solution
[03:39, 27/02/2024] Rachit: C=[40,24]; A=[20 50;80 50]; b=[4800;7200]; x=0:1:250; y1=(b(1)-A(1,1).*x)./A(1,2); y2=(b(2)-A...

2 mesi fa | 0

Risposto
Linear programming code not showing the solution
[16:58, 25/02/2024] HEMANG SEN101: c=[5 3]; A=[3 5 ; 5 2]; b=[15;10]; x=0:1:max(b); y1=(b(1,1)-A(1,1)*x)/A(1,2); y2=(b(2,1)...

2 mesi fa | 0

Risposto
Linear programming code not showing the solution
A=[ 2 3 -1 4;1 2 6 -7 ]; b=[8;-3]; c=[2 3 4 7]; n=size(A,2); m=size(A,1); if n>m nCm = nchoosek(n,m); p =nchoosek...

2 mesi fa | 0