Beantwortet
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 Tage vor | 0

| akzeptiert

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

28 Tage vor | 0

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

28 Tage vor | 1

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

29 Tage vor | 0

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

etwa ein Monat vor | 0

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

etwa ein Monat vor | 0

Beantwortet
Does the Matlab 2023a allow to solve 3D partial differential equations?
Of course OK.

etwa ein Monat vor | 0

Frage


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

etwa ein Monat vor | 1 Antwort | 0

1

Antwort

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

etwa ein Monat vor | 0

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

etwa ein Monat vor | 0

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

etwa ein Monat vor | 0

Beantwortet
How should I call animation from classdef?
classdef classDoublePendulum %< handle properties Length1 = 1; Length2 = 1; ...

etwa ein Monat vor | 0

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

etwa ein Monat vor | 1

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

etwa ein Monat vor | 1

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

etwa ein Monat vor | 0

Beantwortet
to use ismember with arraycell
gg = {'A' ,'A','B' ,'A' } a = cell2mat(gg) g = zeros(1,length(a)); g(find(a=='A')) = 1

etwa ein Monat vor | 0

Gelöst


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

etwa ein Monat vor

Gelöst


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

etwa ein Monat vor

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

etwa ein Monat vor | 0

Gelöst


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

etwa ein Monat vor

Beantwortet
improve fit compared to R
clc; clear global; tol = 1e-07; format('long','g') %format of the numeric values: each number represented by about 15 digit...

etwa ein Monat vor | 0

Beantwortet
1-D Bilateral Kernel Filter ... with better than O(N^2) complexity?
Smoothing means LPFKey is in FFT Cooley-Tookey and FFTW (decomposition, recursive devide-and-conqure) realization, did you mean...

etwa ein Monat vor | 0

Beantwortet
Arnoldi method to find eigenvalues
Hi, happy to help: Use next code: clc clear all close all %non-square matrix: %A=[1 0 0 0;0 17 0 0;0 0 -10 0 ;0 0 0...

etwa ein Monat vor | 0

Beantwortet
how to use all the data for a nonlinear regression?
Hi, I carefully attain further requirements/demands: It's okay, normal right, you do there curve-fitting by l.-m. algorithm, 3...

etwa ein Jahr vor | 0

Gelöst


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

mehr als ein Jahr vor

Gelöst


square root
Find the square root (y) of an input (x).

mehr als ein Jahr vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

mehr als ein Jahr vor

Frage


SC-FDMA LTE multicell PRB to UE scheduling algorithms
Greetings, Having K PRBs ( resources ) and U Users ( UE ) in LTE SC-FDMA multicell uplink system one can construct matrix of ...

etwa 12 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Perform coordinate transformations on partitioned images to match feature points of two images
Hi, I need to code image morphing in matlab.As a part of the algorithm I need to perform coordinate transformations on the part...

mehr als 12 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Generating a 3D volume from measured datapoints
There is an interesting solutions using triangulation : http://www.mathworks.com/matlabcentral/fileexchange/28851-alpha-shape-v...

fast 13 Jahre vor | 0

Mehr laden