photo

Pavl M.


Contact in private

Last seen: Today 2011년부터 활동

Followers: 0   Following: 0

메시지
Programming Languages:
MATLAB
Spoken Languages:
English
Pronouns:
Other - Ask me my pronouns
Professional Interests:
Control Design, Control, Architecture and Component Design, Vehicle Scenarios, Vehicle Motion

통계학

All
  • Knowledgeable Level 2
  • MATLAB Central Treasure Hunt Finisher
  • Promoter
  • Solver
  • Explorer
  • First Review
  • Thankful Level 1
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
Recursive estimation and forecasting
OK. Good. There are really quite many quite very interesting questions here. In order to answer in full to the question please ...

대략 8시간 전 | 0

답변 있음
Forecasting / Input response series data must be non-empty and a column vector.
%load data %yrs = evolutiondelademand.VarName1; %demand = evolutiondelademand.VarName2; odata = xlsread('TitanX Historical ...

대략 10시간 전 | 0

답변 있음
how to draw graphs for optimal control
clc clear all close all test = -1; % Test variable; as long as variable is negative ...the while l...

대략 10시간 전 | 0

답변 있음
changing the scale on the Y axis
xmesh1 = linspace(-1,0,10); xmesh2 = linspace(0,1,10); xmesh = [xmesh1,xmesh2]; yinit = [0 1 0 1 0 1 0 1]; init = bvpinit(...

대략 11시간 전 | 0

답변 있음
PRCC sensitive analysis graphs
%just made it working on both TCE NCE MPPL Matlab versions: clc clear all close all % Define parameter ranges paramRanges...

대략 11시간 전 | 0

답변 있음
how to combine to get single graph in optimal control problems
Code adjustment (descreasing, length, beautifying, refromatting, refactoring): I detected in the programme code script that th...

대략 14시간 전 | 0

답변 있음
forecasting method in matlab using VAR model
It's still OK, quite smooth and not problematic to solve complete and resolve in full. There are 2 different forecast functions...

1일 전 | 0

답변 있음
forecasting method in matlab using VAR model
clc clear all close all %% Step 1: Load data data = xlsread('https://www.mathworks.com/matlabcentral/answers/uploaded_file...

2일 전 | 0

답변 있음
How to apply seasonal decomposition and singular spectrum analysis (SSA) technique to time series
home clear all close all pack dt = readtable('time_series.txt'); %Prefilter - trim, + other datum munging if you'd li...

2일 전 | 0

답변 있음
Different performances of STL decomposition in MATLAB and Python
Are they "pretty" different? It looks ok your plots, the curves are not very different, just scale y axis in Python or plot as i...

2일 전 | 0

답변 있음
how do i get my desired settling time or rise time using lqr which things i need to change to get ny desired output or settling time 8 and rise time 5
Ultimate solution is to find direct funcional dependancy between t_rise = f1(Q,R,N), t_settling = f2(Q,R,N), So far no direct no...

5일 전 | 0

답변 있음
LQI controller is weirdly slow in response and doesn't always reach a goal on plant
It is indeed really factually very valued, yet undervalued and quite intersting, utile question. (Updated, 17 Nov. 2024, Final ...

6일 전 | 0

답변 있음
MATLAB unreasonably hard on my new Macbook Air even after the app is closed
It just means there are left processes(threads) services running consuming many of your CPU processing power. When you launch ...

7일 전 | 0

답변 있음
How do I change the mechanical properties of the cable in a belt-pulley system in Simscape Multibody?
These are codes produced by blend of Matlab AI helper and Copilot AI by up to 1/2 hour of training / tuning it from prompt (my w...

9일 전 | 0

답변 있음
Excel - Sheets Rearranging through MATLAB
Good question. Since as apparent, Excel driver treats the sheets sequence as linked list and so it by default adds it to the li...

9일 전 | 0

답변 있음
how to delete the first sheet of an excel through script
Good question. There are numerous options to do that complete. Which Excel driver are there available to utilize for greater v...

9일 전 | 0

| 수락됨

답변 있음
Set decimal place for uitable
Select any format your wish: https://fr.mathworks.com/help/matlab/ref/format.html %in older Matlab versions format('shortE...

9일 전 | 0

답변 있음
Find closest values from two different matrices
%Version with zero loops. %Runs both on TCE MPPL Octave and Matlab. Finds not only corresponding equal entries on same places...

9일 전 | 0

답변 있음
Find closest values from two different matrices
home clear all close all load('rough_dat.mat') load('data_dat.mat') x y ep Lat Lon rough thresh = eps*1000; %An...

10일 전 | 0

답변 있음
How all are verification and other performance metrics handled on an industrial level for dsp blocks designed in SIMULINK.
OK I need this. To add to it and to continue. Which performance metrics you need that I do for you? SNR, SNIR, BitErrorRa...

10일 전 | 0

답변 있음
Why I get "wrong use of 'reshape'" Error when running Yolov3 detection code?
This kind of questions actually require industry grade research on specific coded implementations within github and matlabcentra...

10일 전 | 0

답변 있음
matlab help displaying blank squares instead of words
Just update your PC OS and your TCE/NCE Matlab or Simulink codecs / encoding ( in Settings / Preferences ) change to UTF32. ...

13일 전 | 0

답변 있음
LQG controller design with LQR
clc clear all close all n_states = 5; n_controls = 5; n_outputs = 5; A = [-0.4628, 0.3217, 0.5789, -0.3823, -0.0507; ...

13일 전 | 0

답변 있음
How to create a state space model with constant term and do feedback.
There are 2 simple precise ways to do it: Just make your Baug = [B 1] and regard your c = u2(k) as constant control input ...

13일 전 | 0

답변 있음
plotting vector in matlab
clc clear x = linspace(0,4*pi,100); figure; %only line plot3(x,zeros(1,100),zeros(1,100),'k','LineWidth',2); hold on...

13일 전 | 0

| 수락됨

답변 있음
How can I plot 3D contour plot for (x, y, z) Cartesian grid with values at each cell?
You need to create suitable grid on your values loaded. Please accept my solution: (Works in NCE MPPL TCE Octave and Matlab): ...

14일 전 | 0

답변 있음
change the order of Autosar Caller function arguments
Correction found: arrguments must be arguments (1 r). What is the rationale and a motivation for doing so? Accordi...

16일 전 | 0

답변 있음
How can I reduce oscilltions in control signal in LQI controller and why response is so similar even using different models?
Good day. The topic, theme, the agenda of the special regulator control strategy design, verification and implementation for cu...

24일 전 | 0

| 수락됨

답변 있음
My code has an opstruct error. What does it mean and how to solve it?
format long clc clear all f = @(x,y)exp(-(x.^2+y.^2)); x_min = 0; x_max = 1; y_min = 0 ;% it already matched w/o to...

25일 전 | 1

답변 있음
How to do autocorrelation with a given data
clc clear all close all stdv = 4; norm_option = 'normalized'; %unbiasd, biased t = 3:3:30; A = [3.523;3.523;3.43;3.3...

25일 전 | 0

| 수락됨

더 보기