Question


Best way to generate an array of all possible integer numbers for a given base and number of digits
I want to prepare an array that contains all combinations in rows of possible sequences represented by an d-digit number of base...

presque 3 ans il y a | 1 réponse | 0

1

réponse

A répondu
CRL:"Simulation Target IPP BLAS" cannot be found in the registry
Problem was solved for me on Mac OS X by closing MATLAB and all Simulink files and restarting.

presque 3 ans il y a | 1

A répondu
How to construct a cell array containing a power series of a matrix
Here is a solution using cellfun: results = cellfun(@(i) A^i, num2cell(1:n), 'UniformOutput', false)

presque 3 ans il y a | 0

Question


How to construct a cell array containing a power series of a matrix
I want to compute the following power series of a square matrix A (as a preliminary step to constructing a larger matrix using t...

presque 3 ans il y a | 1 réponse | 0

1

réponse

A répondu
Bypassing the internal (Linear) observer in MPC toolbox 3
Might be 10 years too late but I had this question and it looks like you can set the following check box below in the Simulink M...

presque 3 ans il y a | 0

A répondu
How to deal with Extended Kalman Filter in Simulink when my state transition function is given in continuous time form?
Check out the examples in the documentation here: https://www.mathworks.com/help/control/ref/extendedkalmanfilter.html The exa...

presque 3 ans il y a | 0

A répondu
Simulink: There is no solver registered as 14.
I don't know exactly what caused this error but I found I could run the msfcn_limintm.m example from the S-functions in the docu...

presque 3 ans il y a | 0

A répondu
How are structs handled when passed to a function?
Seems that MATLAB makes a complete copy of a struct when it is passed to a function if any element is changed by the function (s...

presque 3 ans il y a | 0

Question


Unable to detect datetime or duration data using readtimetable with a seconds index
Here is a toy example of my problem: % Create a timetable with a seconds index data = timetable(seconds(1:3)', randn(3,1), ran...

environ 3 ans il y a | 1 réponse | 2

1

réponse

A répondu
Find the First element that satisfies a condition
If you only want to find the locations in A where the condition is true and then index those values you can use find: >> elemen...

environ 3 ans il y a | 1

A répondu
What is the 'MeasurementFcn1Inputs' input on the Extended Kalman Filter Simulink block?
I found the problem. I was using the same function (robot_outputs) for the NLMPC and the EKF: function y = robot_outputs(x,u) ...

environ 3 ans il y a | 0

| A accepté

Question


What is the 'MeasurementFcn1Inputs' input on the Extended Kalman Filter Simulink block?
I'm trying to implement an Extended Kalman Filter Simulink block similar to the example shown for the inverted pendulum here whi...

environ 3 ans il y a | 1 réponse | 0

1

réponse

A répondu
Get a subset of columns from a timeseries object as a timeseries
Here is my answer to illustrates the timetables solution proposed by @dpb in the comments above. u = timetable(seconds(t),u1,u2...

environ 3 ans il y a | 0

Question


Get a subset of columns from a timeseries object as a timeseries
I have a timeseries containing data for 4 variables: Ts = 0.2; nT = 50; t = Ts*(0:nT-1)'; u1 = 50*idinput(nT); u2 = 50*idinp...

environ 3 ans il y a | 2 réponses | 0

2

réponses

Question


How to insert the 'double R' symbol in LiveScript (space of real numbers)
Anyone know how to get this symbol in the LiveScript equation editor? MS Equation editor equivalent: \doubleR Latex: $\mat...

environ 3 ans il y a | 1 réponse | 0

1

réponse

Question


Is it possible to solve multiple linear systems of equations in parallel with one matrix operation?
I'm wondering if there's a way to do the following calculations in one go (i.e. without the for loop). V = nan([na nv]); for i...

environ 3 ans il y a | 1 réponse | 0

1

réponse

Question


How to replace elements of a cell array using a containers.Map
I have a cell array of VariableNames that Matlab created when reading a csv file. I want to change them to my own choice of nam...

plus de 3 ans il y a | 2 réponses | 0

2

réponses

A répondu
Solve equation that has a complex subexpression
I just discovered that you can also solve this numerically with vpasolve: syms s omega G(s) assume(omega > 0) G(s) = 10/(s*(1...

plus de 3 ans il y a | 0

Question


How to find the 'troughs' using peak finder in Simulink Scope
I've been using the Peak Finder Measurements tool in the Simulink scope output to find the peak of the system responses. But if...

plus de 3 ans il y a | 1 réponse | 0

1

réponse

A répondu
How to check if two transfer functions are the same?
Based on comments from Paul above I offer these functions as a solution: function c = is_equal_tf(G1,G2) c = almost_zero_s...

plus de 3 ans il y a | 0

Question


Basic math operations on contents of a cell array
Is there any reason why basic math operations don't work with cell arrays? Seems to me it would extremely useful and efficient ...

plus de 3 ans il y a | 2 réponses | 0

2

réponses

Question


Best way to resample the output of a Simulink simulation with variable time step into a signal with a fixed sample time
I have a simulation model that runs with a variable timestep: (I don't want to change this) For the purpose of system identi...

plus de 3 ans il y a | 1 réponse | 0

1

réponse

Question


How to turn off text interpreter when plotting timeseries objects
I am plotting timeseries objects using plot. My variable names include underscores (e.g. 'ABC_DEF') and I do not want these int...

plus de 3 ans il y a | 2 réponses | 0

2

réponses

Question


Evaluate function over a mesh grid (without for loops)
Is there a way to evaluate a function that takes an [x, y] vector as input over a grid of points? Here is the function I want t...

plus de 3 ans il y a | 2 réponses | 0

2

réponses

A répondu
Why do I get the warning "MATLAB:dispatcher:InexactCaseMatch Cannot find an exact (case-sensitive) match for 'startup'" on MATLAB startup?
For me the problem started after I added a path to a module that I am using for a course. The scripts in this module are launch...

plus de 3 ans il y a | 0

A répondu
Why are symbolic expressions being rounded?
Mathworks technical support have diagnosed the problem. Don't know what caused it originally but the 'FloatingPointOutput' sett...

plus de 3 ans il y a | 0

| A accepté

Question


Why are symbolic expressions being rounded?
I'm deriving some expressions symbolically and then substituting values and computing the results and I only recently noticed th...

plus de 3 ans il y a | 2 réponses | 0

2

réponses

A répondu
Trying to set parameter values in a Simulink model using a parameter structure
I gave up on trying to figure out the ParameterStructure method and ended up doing it this way which I assume is the standard wa...

plus de 3 ans il y a | 0

Question


How to get subscripts in the legend of a Nichols plot?
How do I put subscripts in a Nichols plot legend? This works fine in a normal plot: figure plot([0 1],[3 4]); hold on plot([...

plus de 3 ans il y a | 1 réponse | 0

1

réponse

Question


Trying to set parameter values in a Simulink model using a parameter structure
I'm following the docmentation here in an attempt to set up a Simulink model so I can apply a set of parameter values to it befo...

plus de 3 ans il y a | 1 réponse | 0

1

réponse

Charger plus