Statistiques
9 Questions
0 Réponses
RANG
69 264
of 300 779
RÉPUTATION
0
CONTRIBUTIONS
9 Questions
0 Réponses
ACCEPTATION DE VOS RÉPONSES
88.89%
VOTES REÇUS
0
RANG
of 21 084
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 170 997
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
linprog function over multi period
For the following question. A Company expects an increase of demand and needs to scale-up. Using MATLAB linprog to propose a r...
plus de 3 ans il y a | 1 réponse | 0
1
réponseQuestion
I am trying to print a structure array
options=optimoptions(@linprog,'Algorithm','dual-simplex'); f=-1*[110;220;250;140]; A=[2/3,1,5/8,5/6;0,1,6/5,3/4;0,1,1/2,0;0,0,...
plus de 3 ans il y a | 1 réponse | 0
1
réponseQuestion
Trouble with my homework - Getting an error in my linear programming code requiring a double.
options=optimoptions(@linprog,'Algorithm','dual-simplex'); f=[110;220;250;140]; A=[2/3,1,5/8,5/6;0,1,6/5,3/4;0,1,1/2,0;0,0,0,1...
plus de 3 ans il y a | 1 réponse | 0
1
réponseQuestion
My function output is not what I was expecting, can someone have a look and suggest why this might be the case. Thanks
The assignment asks to write a function to find unique isosceles triangles of integer sides and area. A=sqrt(m*(m-a)(m-b)(m-...
plus de 9 ans il y a | 1 réponse | 0
1
réponseQuestion
Trying to correct this functions output.
The assignment asks to write a function to find unique isosceles triangles of integer sides and area. A=sqrt(m*(m-a)(m-b)(m-a) w...
plus de 9 ans il y a | 1 réponse | 0
1
réponseQuestion
Undefined function or variable 'a'.
My current problem refers to the below script and function. clear; for x=100:145 assfunct1(x); fprintf('x: %...
plus de 9 ans il y a | 2 réponses | 0
2
réponsesQuestion
If I have a function with 1 input producing 3 outputs; ran a small program loop to produce multiple outputs; how would I print out the input and 3 values in that order for the first 12 outputs.
If I have a function with 1 input producing 3 outputs; ran a small program loop to produce multiple outputs; how would I print ...
plus de 9 ans il y a | 1 réponse | 0
1
réponseQuestion
Can someone help me with my if statements in my function?
I have written this function for a homework assignment, Basically finding heronian isosceles triangles for a given Perimeter. My...
plus de 9 ans il y a | 2 réponses | 0
2
réponsesQuestion
This code crashes my MATLAB and I don't know y figure(2); x = linspace(0,2); y = linspace(5,7); [X,Y]=meshgrid(x,y); Z = sin(X*Y).*Y + Y*exp(-cos(X*Y^2)).*X; mesh(X,Y,Z); xlabel('x'); ylabel('y'); zlabel('z'); grid on; title('Question 4 plot');
Hi, My MATLAB crashes when I try to execute this code, MATLAB (R2015b) has stopped working A problem caused the program t...
plus de 9 ans il y a | 1 réponse | 0
