Robin Kirsch
Followers: 0 Following: 0
Feeds
已回答
How to display my answer with out rewriting them?
You are overwriting minmax_ind every time. If you find a local max, you will overwrite it if you find another one. I hope this i...
How to display my answer with out rewriting them?
You are overwriting minmax_ind every time. If you find a local max, you will overwrite it if you find another one. I hope this i...
4 years 前 | 0
提问
Create Graphics with Matlab
Hello, I am trying to recreate a figure such that i can do some modifications with it. I need it later on in Latex, so it has t...
4 years 前 | 1 个回答 | 0
1
个回答提问
detailed multiplication of state spaces
Hello, I am wondering what happens exactly when I multiply 2 state spaces? Such that systemA = ss(A,B,C,D) and systemB = ss(AB...
4 years 前 | 1 个回答 | 0
1
个回答提问
matrix with 2 rows and 1 column Simulink
Hello, I am getting this error in Simulink.. Error in port widths or dimensions. The signal ... block must be a matrix si...
4 years 前 | 0 个回答 | 0
0
个回答提问
Specify sample time of if block
Hello, I receive an error that my sample time of my IF-Block does mismatch with the Sample time I am using for the controller i...
4 years 前 | 1 个回答 | 0
1
个回答提问
fsolve cant find a solution for some points
Hello, I am using fsolve to solve an equation. In some operating points, I can find a solution, whereas in others it says "No s...
4 years 前 | 2 个回答 | 0
2
个回答提问
Optimization solver equality constraints
Hello, I have always used the qpkwik Solver from Matlab to solve optimization problems with inequality constraints. Now I ...
4 years 前 | 1 个回答 | 0
1
个回答已回答
create non uniform increment vector
a = [1:10 9:-1:1] a = Columns 1 through 13 1 2 3 4 5 6 7 8 9 10 9 8 ...
create non uniform increment vector
a = [1:10 9:-1:1] a = Columns 1 through 13 1 2 3 4 5 6 7 8 9 10 9 8 ...
4 years 前 | 0
已回答
Data representation of Integer values in .mat file
Use the format operator found here https://au.mathworks.com/help/matlab/matlab_prog/display-format-for-numeric-values.html >> ...
Data representation of Integer values in .mat file
Use the format operator found here https://au.mathworks.com/help/matlab/matlab_prog/display-format-for-numeric-values.html >> ...
4 years 前 | 0
提问
GUI for Simulink as a standalone (load_system is excluded from packaging)
Hello, I am having a GUI designed with App Designer running and displaying variables from a Simulink Model. I can also adjust v...
4 years 前 | 1 个回答 | 0
1
个回答已回答
Equations solving on Matlab , 3 unkowns and 2 equations.
If you simply want to know x, v0 and u0 you can just use the solve method. I assumed random variables for the known constants in...
Equations solving on Matlab , 3 unkowns and 2 equations.
If you simply want to know x, v0 and u0 you can just use the solve method. I assumed random variables for the known constants in...
4 years 前 | 0
已回答
Finding area under multiple curves with different y references
you could try to get the peaks with the findpeaks method from Matlab, and then you for-loop backwards over the data array from t...
Finding area under multiple curves with different y references
you could try to get the peaks with the findpeaks method from Matlab, and then you for-loop backwards over the data array from t...
4 years 前 | 0
已回答
How to save variables in MATLAB function in the workspace
Use assignin command function y = test() assignin('base','x',42) y = 0 end
How to save variables in MATLAB function in the workspace
Use assignin command function y = test() assignin('base','x',42) y = 0 end
4 years 前 | 0
| 已接受
已回答
Splitting matrix into arrays
I assume that you want to split a 2x1000 matrix into 2 1x1000 vectors. A simple solution to do this is to extract each row, if...
Splitting matrix into arrays
I assume that you want to split a 2x1000 matrix into 2 1x1000 vectors. A simple solution to do this is to extract each row, if...
4 years 前 | 0
| 已接受