photo

Gert Kruger


Last seen: mehr als ein Jahr vor Aktiv seit 2015

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

0 Fragen
8 Antworten

File Exchange

5 Dateien

Cody

0 Probleme
9 Lösungen

RANG
3.294
of 300.369

REPUTATION
18

BEITRÄGE
0 Fragen
8 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
5

RANG
4.053 of 20.936

REPUTATION
363

DURCHSCHNITTLICHE BEWERTUNG
4.20

BEITRÄGE
5 Dateien

DOWNLOADS
35

ALL TIME DOWNLOADS
3381

RANG
42.023
of 168.436

BEITRÄGE
0 Probleme
9 Lösungen

PUNKTESTAND
100

ANZAHL DER ABZEICHEN
1

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • 5-Star Galaxy Level 3
  • Explorer
  • Personal Best Downloads Level 3
  • First Review
  • First Submission
  • Knowledgeable Level 1
  • Revival Level 1
  • Solver
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Gesendet


Resonant DC-link inverter simulation models
Various resonant DC-link inverter simulation models are explored using different controllers.

mehr als 5 Jahre vor | 2 Downloads |

0.0 / 5
Thumbnail

Gesendet


PV array with algebraic loop broken
PV array with filter corrected to solve the algebraic loop problem.

mehr als 6 Jahre vor | 30 Downloads |

3.4 / 5
Thumbnail

Beantwortet
algebraic loop problem in PV array block
The reason why there is an algebraic loop: The V-Filter and I-Filter in the model, for the computation of Vd, is supposed to br...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Algebraic loop error in PV panels (in filter block)
The reason why there is an algebraic loop: The V-Filter and I-Filter in the model, for the computation of Vd, is supposed to br...

mehr als 6 Jahre vor | 0

Beantwortet
How to initialize outpt of a matlab function block in simulink to zero
You can add a persistent variable and check if it is empty. If it is empty, then it means it is the first time the Matlab functi...

mehr als 6 Jahre vor | 0

Beantwortet
How to solve algebraic loop error??
PV panel model with fixed algebraic loop: https://www.mathworks.com/matlabcentral/fileexchange/71682-pv-array-with-algebraic-loo...

mehr als 6 Jahre vor | 0

Beantwortet
How to connect two power grids in SimPowerSystem through DC_link?
Sorry, this answer is four years late: The 3-phase voltage sources you used to represent the grids are both tied to ground, t...

mehr als 6 Jahre vor | 0

Beantwortet
Matrix interpolation in the direction of the third dimension
Here is my attempt at answering your question. I imagine that there are N matrices each with size nxn. Example matrices: %% n...

mehr als 6 Jahre vor | 1

Gesendet


Newton-Raphson reciprocal approximation , 1/x and 1/sqrt(x)
The Newton-Raphson approximation of the reciprocal, i.e. 1/x and square root reciprocal is provided along with accuracy testing ...

mehr als 6 Jahre vor | 1 Download |

0.0 / 5

Beantwortet
why PV panels gives algebraic loop errors?
The provided suggestion of the unit delay is a work around, but it does not provide the reason for the presence of the algebraic...

mehr als 6 Jahre vor | 2

Gesendet


On-line simplex search
A reentrant version of the well-known Simplex search (Nelder-Mead) optimization is provided.

mehr als 6 Jahre vor | 1 Download |

0.0 / 5

Gelöst


Create a square matrix of multiples
Given an input, N, output a matrix N x N with each row containing multiples of the first element of each row. This also applies...

mehr als 6 Jahre vor

Gelöst


Is my wife right?
Regardless of input, output the string 'yes'.

mehr als 6 Jahre vor

Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

mehr als 6 Jahre vor

Gelöst


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

mehr als 6 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

mehr als 6 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

mehr als 6 Jahre vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

mehr als 6 Jahre vor

Gelöst


Add a block to a model
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-block-eqn.png>> In this case, the slope of...

mehr als 6 Jahre vor

Gelöst


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

mehr als 6 Jahre vor

Gesendet


Real time tunable filters
A library of first and second order filters whose parameters can be tuned in real-time.

etwa 8 Jahre vor | 1 Download |

5.0 / 5
Thumbnail

Beantwortet
Can matlab give me difference equation from transfer fucntion
syms z; H = (1-z^-1) / (1-3*z^-1+2*z^-2); [N, D] = numden(H); Nc = eval(coeffs(N)); %Get coeffs and evaluatle symbolic ...

mehr als 10 Jahre vor | 2