photo

Gian Lorenzo


Active since 2013

Followers: 0   Following: 0

Message

Statistics

MATLAB Answers

5 Questions
0 Answers

RANK
168,511
of 300,364

REPUTATION
0

CONTRIBUTIONS
5 Questions
0 Answers

ANSWER ACCEPTANCE
80.0%

VOTES RECEIVED
0

RANK
 of 20,936

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 168,407

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Question


Notation with DSOLVE is unclear
I am solving this differential equation syms y(x) dsolve(diff(y) == 4/100*y) that gives C4*exp(x/25) What do...

12 years ago | 1 answer | 0

1

answer

Question


Solution with parameter in SOLVE
Solving this I get %% Solve the system given by KKT conditions S = solve(g1==0,g2==0,g3==0, cs1==0, x1, x2, x3...

12 years ago | 1 answer | 0

1

answer

Question


Order of variables in SOLVE
clear all syms x y l1 l2 l3 %%Generate symb var for multipliers v=[x y l1 l2 l3]; g1=(y-3)/sqrt((x-2)^2+(y-3)^2)+l1...

12 years ago | 1 answer | 0

1

answer

Question


Remove row from matrix that doesn't meet if condition
f=@(x) 2-2*x(1)-x(2) %% Check admissibility for j=1:size(sol,1); z=sol(j,1:2) if f(z)>=-1 ...

12 years ago | 1 answer | 0

1

answer

Question


What is going wrong with my mesh command?
I am trying to visualize this function and eventually its contour lines: clear all [x,y]=meshgrid(-10:0.1:10) d=m...

12 years ago | 2 answers | 0

2

answers