Community Profile

photo

Ivo Houtzager


Last seen: 23일 전 2008년부터 활동

통계

All
  • Knowledgeable Level 2
  • GitHub Submissions Level 3
  • 3 Month Streak
  • Revival Level 2
  • Explorer
  • Personal Best Downloads Level 3
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • First Answer
  • Scavenger Finisher
  • Solver

배지 보기

Content Feed

보기 기준

제출됨


Motion Trajectory Generator using the Ruckig Library
Simulink block for online motion trajectory generation using the Ruckig Library.

29일 전 | 다운로드 수: 2 |

제출됨


Trajectory Generator using the Reflexxes Motion Library
Simulink block for online trajectory generation using the Reflexxes Motion Library.

29일 전 | 다운로드 수: 3 |

제출됨


Simple EtherCAT Slave Block SFunction for Raspberry Pi
Simple EtherCAT Slave Block SFunction for EtherCAT slave HAT with LAN9252 chip for Raspberry Pi

8개월 전 | 다운로드 수: 1 |

답변 있음
Error using Kalman function - cannot compute stabilizing Riccati solution
Your state-space model is probably not a minimal realization, in other words not fully obervable or not fully controllable. Perf...

12개월 전 | 0

답변 있음
Solve Linear System with a Ill Conditioned matrix.
Please have look at the following regress function, see PBSID-Toolbox/regress.m at master · jwvanwingerden/PBSID-Toolbox · GitHu...

1년 초과 전 | 0

| 수락됨

제출됨


Rank-Revealing QR factorization
Rank-Revealing QR factorization of an array

1년 초과 전 | 다운로드 수: 1 |

답변 있음
How to solve the Lyapunov equation with unknowns
One inefficient way is too convert the Lyaponuv Matrix equation to linear system using the vectorization rule, and solve the lin...

1년 초과 전 | 1

| 수락됨

답변 있음
discrete transfer function block replace of contioues transfer function block
You can't use the same parameters of the continuous-time filter in the discrete-time filter. You will have to discretize the fil...

2년 초과 전 | 0

답변 있음
Least square parameter estimation of MIMO ARX model
Example script to obtain the parameters of a MIMO ARX model (VARX) using least squares. N = 1000; % number of samples p = 5; %...

2년 초과 전 | 0

답변 있음
System ID function AR or ARMAX
Define a step input, and fit OE model as this model structure fits your data the best. See updated code below. % generate data:...

2년 초과 전 | 0

| 수락됨

제출됨


Simple EtherCAT Master Block SFunction for Raspberry Pi
Simple EtherCAT Master Block SFunction for Raspberry Pi

거의 3년 전 | 다운로드 수: 8 |

Thumbnail

제출됨


Discrete-time Periodic Riccati Equation (DPRE)
Discrete-time periodic Riccati equation solver for periodic LQ state-feedback design

거의 3년 전 | 다운로드 수: 4 |

제출됨


Simple EtherCAT Master for Simulink Windows Desktop
Simple EtherCAT Master for Simulink Windows Desktop

거의 3년 전 | 다운로드 수: 7 |

제출됨


netHAT EtherCAT Slave Block SFunction for Raspberry Pi
netHAT NXHAT52-RTE EtherCAT Slave Driver Block SFunction for Raspberry Pi

거의 3년 전 | 다운로드 수: 1 |

Thumbnail

제출됨


Polynomial roots with Jenkins-Traub algorithm
Find polynomial roots with Jenkins-Traub algorithm.

거의 3년 전 | 다운로드 수: 2 |

제출됨


Cosine Sine Decomposition
Cosine Sine Decomposition of an array

거의 3년 전 | 다운로드 수: 3 |

제출됨


QR/RQ/QL/LQ factorizations
QR/RQ/QL/LQ factorizations of an array.

거의 3년 전 | 다운로드 수: 4 |

제출됨


Least squares with minimum-norm solution
Least squares with minimum-norm solution

거의 3년 전 | 다운로드 수: 2 |

제출됨


JQR/JRQ/JQL/JLQ factorizations
JQR/JRQ/JQL/JLQ factorizations of an array

거의 3년 전 | 다운로드 수: 1 |

제출됨


Total Least Squares with mixed and/or weighted disturbances
Generalized Total Least Squares with mixed and/or weighted disturbances

거의 3년 전 | 다운로드 수: 7 |

답변 있음
How to transform matrix V? (A = V*F*inv(V))
I believe you want to compute the Jordan canonical form of A. This can be done by [V,F] = jordan(A)

대략 3년 전 | 0

답변 있음
Solving 4 linear equations with 4 unknowns (but vector variables)
Rewrite the linear equations to the linear matrix form of Y = A * X and then solve this linear matrix problem, see the following...

대략 3년 전 | 0

답변 있음
lsim giving wrong results
Your end time in seconds do not match between the plots. The lsim simulates only up to 50 seconds which was set by the T variabl...

대략 3년 전 | 0

| 수락됨

답변 있음
How to convert fmincon to C code?
The fmincon is supported by code generation, but there are limitations on syntax and options which can be used, see the followin...

3년 초과 전 | 0

답변 있음
Solve (a*B) + (c*D) = E without the Symbolic Toolbox
A = E*pinv([B; D]); a = A(1); c = A(2);

3년 초과 전 | 0

답변 있음
Simulink Real-Time CPU overload in standalone mode
I had the same issue. For me disabling "USB Support" in the target settings solved it. Also the disable SMI block from https:/...

3년 초과 전 | 0

답변 있음
Simulink Real-Time and non-Speedgoat Machine
Answer for Simulink Real-Time version up to 2020a. The target PC must be able to run DOS. Thus motherboards with UEFI only firmw...

3년 초과 전 | 6

답변 있음
Simulink Real-Time: boot in UEFI mode
Simulink Real-Time runs OnTime RTKernel on DOS. MS-DOS or FreeDOS require a BIOS interface to boot. Thus it's not possible for U...

3년 초과 전 | 0

답변 있음
Generate DLL from Simulink model
There is a Simulink controller design example to create DLL for GH Bladed and OpenFAST in github, see https://github.com/TUDelf...

3년 초과 전 | 0

답변 있음
Is it possible to add EtherCAT Master to Raspberry Pi Simulink Support Package?
See example on the File Exchange Simple EtherCAT Master Block SFunction for Raspberry Pi which shows basic usage of the Simple O...

3년 초과 전 | 0

더 보기