Domanda


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...

oltre 3 anni fa | 1 risposta | 0

1

risposta

Risposto
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.

oltre 3 anni fa | 1

Risposto
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)

oltre 3 anni fa | 0

Domanda


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...

oltre 3 anni fa | 1 risposta | 0

1

risposta

Risposto
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...

oltre 3 anni fa | 0

Risposto
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...

oltre 3 anni fa | 0

Risposto
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...

oltre 3 anni fa | 0

Risposto
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...

oltre 3 anni fa | 0

Domanda


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...

oltre 3 anni fa | 1 risposta | 2

1

risposta

Risposto
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...

oltre 3 anni fa | 1

Risposto
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) ...

oltre 3 anni fa | 1

| accettato

Domanda


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...

oltre 3 anni fa | 1 risposta | 0

1

risposta

Risposto
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...

oltre 3 anni fa | 0

Domanda


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...

oltre 3 anni fa | 2 risposte | 0

2

risposte

Domanda


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...

oltre 3 anni fa | 1 risposta | 0

1

risposta

Domanda


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...

oltre 3 anni fa | 1 risposta | 0

1

risposta

Domanda


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...

quasi 4 anni fa | 2 risposte | 0

2

risposte

Risposto
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...

quasi 4 anni fa | 0

Domanda


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...

circa 4 anni fa | 1 risposta | 0

1

risposta

Risposto
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...

circa 4 anni fa | 0

Domanda


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 ...

circa 4 anni fa | 2 risposte | 0

2

risposte

Domanda


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...

circa 4 anni fa | 1 risposta | 0

1

risposta

Domanda


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...

circa 4 anni fa | 2 risposte | 0

2

risposte

Domanda


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...

circa 4 anni fa | 2 risposte | 0

2

risposte

Risposto
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...

circa 4 anni fa | 0

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

circa 4 anni fa | 0

| accettato

Domanda


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...

circa 4 anni fa | 2 risposte | 0

2

risposte

Risposto
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...

circa 4 anni fa | 0

Domanda


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([...

circa 4 anni fa | 1 risposta | 0

1

risposta

Domanda


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...

circa 4 anni fa | 1 risposta | 0

1

risposta

Carica altro