photo

Carlos Felipe Rengifo


Last seen: 9 months ago Active since 2012

Followers: 0   Following: 0

Message

Carlos F. Rengifo received his electrical engineering and master's degrees on automatic control degrees from "Del Valle" university in Colombia. In 2007 and 2010, he obtained the degrees of master and Ph.D. in Robotics and Automation from the Ecole Centrale de Nantes in France. Currently, he is working with "Del Cauca" university (Colombia) as a professor. His research includes modeling and control of robots and biomechanical systems.

Programming Languages:
C, R, MATLAB, Arduino
Spoken Languages:
English, French, Spanish

Statistics

All
MATLAB Answers

1 Question
9 Answers

Cody

0 Problems
86 Solutions

RANK
2,977
of 300,641

REPUTATION
20

CONTRIBUTIONS
1 Question
9 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
4

RANK
 of 21,036

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
3,641
of 169,946

CONTRIBUTIONS
0 Problems
86 Solutions

SCORE
1,077

NUMBER OF BADGES
4

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1
  • Introduction to MATLAB Master
  • Community Group Solver
  • Knowledgeable Level 2
  • Revival Level 2
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
allmargin gives incorrect answers for some discrete time systems
Hi Paul Thank you for your valuable comments. They helped me to understand the problem. Yesterday, I reported the bug to Math...

1 year ago | 0

Question


allmargin gives incorrect answers for some discrete time systems
Hi, Consider the following code: s = tf("s"); gs = 1/(s*(s+1)); gz = c2d(gs, 4, "zoh"); allmargin(gz) gclz = zpk(feedback(...

1 year ago | 2 answers | 0

2

answers

Answered
Minimum value of select cell elements?
Hi, I propose you the following solution: % The 20x50 cell array is transformed into a 20x(10000) matrix. elems ...

7 years ago | 0

Answered
How can I remove a set of given peaks such as the peaks located at (7.9000,0.9989) and (14.1000, 0.9993) in the following code? I want to be able to do this even when the plot expands and has many more peaks.
Hi, it can be done by replacing the undesired peaks by nan values. In your case, it will be: % The first two lines of you...

7 years ago | 0

Answered
Ode45 would not converge with the following statement
Hi, I guess the "y" vector contains a NaN, and as a consequence "C" contains also NaNs. This happen even if B is equal to zero (...

7 years ago | 2

| accepted

Answered
I would like to get an cell array output by matching 2 cell arrays and returning with corresponding matched values from other cell array.
Please, let me know if the following sentence solves your problem: B(ismember(B(:,1),A),:)

7 years ago | 0

| accepted

Answered
ODE to answer projectile question
I hope this will help you: clc; clear variables; close all; % Parameters of the model S = rand(1); ...

7 years ago | 0

Answered
Interp1 wrong answer
Instead of the function interp1, you could use this sentence: yi = polyval(polyfit(X,Y,1),xi) In Matlab '9.4.0.885841 (R...

7 years ago | 0

Answered
Problem with Matlab solver
Hi, You can solve the equation without using symbolic math. The answer can be find in a numerical way: H = @(w) 0.1/(1 - 0...

7 years ago | 0

Answered
Why do I get different answers for inverse?
The variables "xs" and "x2s" contain equivalent mathematical expressions. The variable "xs" is a simplified version of the varia...

7 years ago | 2

| accepted