photo

Erivelton Gualter


Last seen: 12 Monate vor Aktiv seit 2019

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

2 Fragen
38 Antworten

Cody

0 Probleme
142 Lösungen

RANG
708
of 301.754

REPUTATION
110

BEITRÄGE
2 Fragen
38 Antworten

ANTWORTZUSTIMMUNG
50.0%

ERHALTENE STIMMEN
23

RANG
 of 21.410

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
1.555
of 176.414

BEITRÄGE
0 Probleme
142 Lösungen

PUNKTESTAND
1.761

ANZAHL DER ABZEICHEN
5

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Knowledgeable Level 3
  • Revival Level 1
  • Draw Letters
  • Introduction to MATLAB Master
  • Thankful Level 1
  • CUP Challenge Master
  • Community Group Solver
  • Knowledgeable Level 2
  • Solver
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Algebraic Riccati Equation Solution for Code Generation
The solution of riccati equation using Simulink was answed here: https://www.mathworks.com/matlabcentral/answers/87237-lqr-simu...

fast 5 Jahre vor | 0

Frage


How to create a multisine signal input using idinput given duration and peak value?
Hello everyone, I am setting up a system identification experiment, and I came across the following example for an industrial a...

etwa 5 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Generating random number, mathlab
help rand random_number = rand(1)

mehr als 6 Jahre vor | 0

Beantwortet
Help to Generate triangle wave
There is a function you might use for this task called sawtooth. You might find some help in this page. t = -.4:0.001:.4; ...

mehr als 6 Jahre vor | 0

Beantwortet
how will I replace a string with another string without using strrep?
If you still want to keep your line of thought instead of using Bhaskar approach, which is simpler, you can: % Example entries ...

mehr als 6 Jahre vor | 0

Frage


Is there an alternative way to perform the following matrix transformation?
Is there a better way to perform the following operation. For example, for the following matrix: A = 1 13 25 ...

mehr als 6 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
How do i find x in an equation using the solve command?
Do you have Symbolic Math Toolbox? Try the following: syms x fcn = x-2; solve(fcn == 0)

mehr als 6 Jahre vor | 1

Beantwortet
Why is my plot blank? (New to MATLAB)
Try the following: x = -pi:.1:pi; for i=1:length(x) S(i) = (2.*heaviside(x(i)))-1; end figure plot(S,x,'-r*'); axis([...

mehr als 6 Jahre vor | 0

Beantwortet
Find set of values that are unique to the values in another column
% Mqtrix A =[2 3; 2 6 2 8 4 5 5 9 5 39 5 6] % Get unique values on first collumn un = unique(A(...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Extract Min, Max and mean values for each month of each respective year. (Excel Data)
%% Initialize variables. filename = 'temptable.csv'; delimiter = ','; startRow = 3; %% Format for each line of text: form...

mehr als 6 Jahre vor | 0

Beantwortet
How can I ready a m file form a exe program?
See Kaustubha Govind answers in https://www.mathworks.com/matlabcentral/answers/23369-generating-standalone-executable-file-us...

mehr als 6 Jahre vor | 0

Beantwortet
I'm trying to define a simbolic variable like ¨ syms x ¨. I used to do it but now It doesn't work..
Maybe you do not have the Symbolica Package installed or do not have license. Run the following comand on command windows: ver ...

mehr als 6 Jahre vor | 1

Beantwortet
Help !! Problems Using fmincon
I see that you already have choose your solver, which is fmincon. Go over on the Description of the solver and note it contains ...

mehr als 6 Jahre vor | 1

Beantwortet
How do I compare to matrices with each other?
If I understood right, you want to compare the first 1000 rows of these two matrix. % Sample Matrix A = rand(1000, 3); B = ra...

mehr als 6 Jahre vor | 1

Beantwortet
Running a calculation for an entire array and putting the results into a new array
% Given A as: A = 1:194; % We can simply solve the following: B = 2+2./A;

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot individual data on a 2D line graph
See the following example: % Sample Data x = 0:.1:2*pi; y = sin(x); % Find maximun value [max_point, idx] = max(y); fi...

mehr als 6 Jahre vor | 1

Beantwortet
Producing outputs from loop
for N=1:1068 [pks,locs] = findpeaks(xMatrix(:,N),'MinPeakDistance',20,'MinPeakHeight',750); B = rmoutliers(pks,'mean')...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
for loop for reading numbers from a matrix in each row
% Matrix a a =[1 2 4; 3 4 5; 5 6 2] % Get size of a [n, m] = size(a); % Run throu...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
concatenate column values in a vector
You can use the following line of code: v2 = sum(v1*diag(10.^(length(v1)-1:-1:0)));

mehr als 6 Jahre vor | 1

Beantwortet
Give me some help to solve this problem ?
First, your code shows two different variables: BW and bw. Also, you might adjust the binarization with some threshold. BW = i...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
Add text to individual frame using Videowriter.
See the following functions: text or annotation.

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
matlab not reading images from folder in correct sequence
It had happened to me before. The problem is the files name is sorted in according to the strings. Let's say you have the follo...

mehr als 6 Jahre vor | 0

Beantwortet
How to sum the minor number of each line in a matrix?
Given matrix A as: A = [9 6 3; 8 5 2; 7 4 1]; % Sample Matrix minA = min(A,[],2); % Ret...

mehr als 6 Jahre vor | 0

Beantwortet
creating a matrix from two sets of data
Here is a possible solution: x = [1 2 3 4]; y = [1;2]; nx = length(x); c(1:nx,1) = x; c(1:nx,2) = y(1); c(nx+1:2*n...

mehr als 6 Jahre vor | 0

Beantwortet
creating a matrix from a column vector
Lets say you have your signal (EEG_signal): EEG_signal = rand(1,136704); % Sample SIgnal You can reshape this on matrix format...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
Indexing how many times is an element repeated in a matrix in another array
The following piece of code solve your problem: arr = unique(A); for i=1:length(arr) n = arr(i); B(A==n) = 1:length(...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
Loop for repeating a process multiple times
You need to use the ./ operator to perform division of arrays. Try this E = 100; I = 1:100; C = 1; Loss ...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
i cannot find the minimum values for matrix.
Alternative method to find the minium value for each column: min(T,[],1)

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
[U,V]=eig(A) , AU won't equal UV
It is not a bug. It depends of the floating point numbers. If you type the following, you will observe that the floating point...

mehr als 6 Jahre vor | 1

Beantwortet
sz means in image segmentation
Let's say you have size = [300 400]. So, img is a matrix of zeros with this size. than you might show. Try the following code: ...

mehr als 6 Jahre vor | 1

Mehr laden