Réponse apportée
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...

22 jours il y a | 0

Réponse apportée
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...

22 jours il y a | 0

Réponse apportée
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...

22 jours il y a | 0

Réponse apportée
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. ...

25 jours il y a | 0

Réponse apportée
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; ...

26 jours il y a | 0

Réponse apportée
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 ...

26 jours il y a | 0

Réponse apportée
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...

26 jours il y a | 0

| A accepté

Réponse apportée
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): ...

27 jours il y a | 0

Réponse apportée
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...

28 jours il y a | 0

Réponse apportée
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...

environ un mois il y a | 0

| A accepté

Réponse apportée
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...

environ un mois il y a | 1

Réponse apportée
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...

environ un mois il y a | 0

| A accepté

Réponse apportée
problem with polyeig
I corrected the question post: Hi everyone, I'm Giacomo Perfetti. I'm a mechatronic engineer and I'm doing my work of thesis ...

environ un mois il y a | 0

Réponse apportée
Does ordinary "eig" calculate eigenvalues faster than "polyeig"?
clc clear all close all %format native-bit format longg rand('state',1) %for ProblemComplexty = 2:1:1000 ProblemC...

environ un mois il y a | 1

Réponse apportée
Problem in a disturbance rejection tuning controller
I added to it and run it in 2024 Simulink: Than I settled your control with 1 PID to the convergence: With PI only con...

environ un mois il y a | 0

Réponse apportée
Problem in a disturbance rejection tuning controller
Dear Prospective Service Buyer. I indeed worked and submitted results within IMC, MPC Control Systems Engineering domains. ...

environ un mois il y a | 0

Réponse apportée
solving nonlinear equation using newton method
I revamped the software code scientific computing TCE programme, here is good answer I provided: clc clear all close ...

environ 2 mois il y a | 0

Réponse apportée
Does the Matlab 2023a allow to solve 3D partial differential equations?
Of course OK.

environ 2 mois il y a | 0

Question


Picture comparison, latest.
I have completed running C++ code for image stitching using ASIFT. Which robust, reliable, SOTA, industrious, accurate, fast,...

environ 2 mois il y a | 1 réponse | 0

1

réponse

Réponse apportée
Partitioning a vector of doubles into cells using a second vector to index
clc clear all close all vectorContents = 1:7 indexingVector = [1 1 1 2 2 3 3] uniqueInds = unique(indexingVector) stor...

environ 2 mois il y a | 0

Réponse apportée
How to Set a Minimum Step Size for Variables in GA Solver (Global Optimization Toolbox)?
I solved it complete. Solution AB1: close all force; clc; clear all clear global; tol = 2.7756e-1; ...

environ 2 mois il y a | 0

Réponse apportée
Solution of system of nonlinear equations
Here, I've solved it in more than 4 methods, for specific equations' system approximated solutions found with fixed interval c...

environ 2 mois il y a | 0

Réponse apportée
How should I call animation from classdef?
classdef classDoublePendulum %< handle properties Length1 = 1; Length2 = 1; ...

environ 2 mois il y a | 0

Réponse apportée
What do I need to create a coherent new set of numbers?
According to phylosophy, the novel set of numbers should be closed under: Distinction property (i.m. how to distinguish between...

environ 2 mois il y a | 1

Réponse apportée
Read Data from IMU and Environmental Sensors in C2000 issue
Dear Friends, It is really good question. All N questions here deserves all N optimal answers. What with hardware board? How d...

environ 2 mois il y a | 1

Réponse apportée
Zero forcing equalization plotting
In order it will sound reasonable and Signal Processing domain logically correct, you need your Zero Forcing Equalizer filter...

environ 2 mois il y a | 0

Réponse apportée
to use ismember with arraycell
gg = {'A' ,'A','B' ,'A' } a = cell2mat(gg) g = zeros(1,length(a)); g(find(a=='A')) = 1

environ 2 mois il y a | 0

A résolu


Find the longest sequence of 1's in a binary sequence.
Given a string such as s = '011110010000000100010111' find the length of the longest string of consecutive 1's. In this examp...

environ 2 mois il y a

A résolu


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

environ 2 mois il y a

Réponse apportée
Plot PV diagram for 2 arrays
Dear Friends, Dear prospective employer, Attn.: Important Priority Level 1: This is quite very valuable and interesting p...

environ 2 mois il y a | 0

Charger plus