Community Profile

photo

Matteo Lo Preti


Last seen: 8 days ago Active since 2020

Followers: 0   Following: 0

Statistics

All
  • 5-Star Galaxy Level 1
  • Knowledgeable Level 2
  • Promoter
  • First Answer
  • Creator
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • First Submission
  • Community Group Solver
  • Solver

View badges

Feeds

View by

Answered
How can I solve the following derative problem in Matlab ?
Hi Vuqar, You can solve the derivative problem with the diff function, and then apply the simplify function. syms x y = (x^2...

3 years ago | 0

| accepted

Answered
multiple functions within one script
Hi Nora, You can have a function as input of another one, like this out = min_bisect(fun, a, b) In the main call, use the pass...

3 years ago | 0

| accepted

Answered
creatting a polygon in matlab
x = linspace(0,30,50); y = 10+1*exp((-(x-15).^2)/10); x = [30 30 0 x]; y = [10 0 0 y]; warning('off', 'MATLAB:polyshape:rep...

3 years ago | 0

| accepted