photo

sushanth govinahallisathyanarayana


Last seen: fast 4 Jahre vor Aktiv seit 2020

Followers: 0   Following: 0

Statistik

All
MATLAB Answers

0 Fragen
8 Antworten

Cody

0 Probleme
53 Lösungen

RANG
12.739
of 300.392

REPUTATION
4

BEITRÄGE
0 Fragen
8 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
0

RANG
 of 20.933

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
8.863
of 168.335

BEITRÄGE
0 Probleme
53 Lösungen

PUNKTESTAND
738

ANZAHL DER ABZEICHEN
4

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver
  • Knowledgeable Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
How Can I remove the Periodic Noise lines from Color image attached?
You can filter it in the frequency domain with a suitable low pass filter. Your code seems to indicate that you know where the ...

fast 5 Jahre vor | 0

Beantwortet
How to get all matrix values in 3X4 sub-matrix from an M x N matrix(Template Matching)
You could use im2col, with the 'sliding' option. It will split the image columnwise into patches. Then you can take the inner pr...

fast 5 Jahre vor | 0

Beantwortet
optimise nested for-loop
Is a a constant? You can pre-calculate ep(i,p,o)*lam(i,p,o) outside the loop as ep(i,p,o).*lam(i,p,o). Then you only have a lo...

etwa 5 Jahre vor | 0

Beantwortet
Disable font smoothing in colorbar object
You can use gca to get a handle to the current axes, after that you can use the properties of the axes to set accordingly.

etwa 5 Jahre vor | 0

Beantwortet
Diagonalising a Skew-Symmetric Matrix
I tested this out in Matlab R2018 A m=[0,-1;1,0]; [V,D]=eig(m) V'*V seems to be identity for me, m is skew symmetric here. I ...

etwa 5 Jahre vor | 0

Beantwortet
To create animation video using array frames of different size
You could crop the first 2 down to 934x1672, or resize the frames to a common size, imresize will help. Failing that, you can cr...

etwa 5 Jahre vor | 0

Beantwortet
Select and Save the points that have 3 neighbors exactly 1 unit of distance away.
You could loop through the points and obtain a distance matrix dist for i=1:size(A,1) dist(:,i)=sum((A-A(i,:)).^2) end thr=1...

etwa 5 Jahre vor | 0

Beantwortet
How to save multiple text files with same name, but with incrementing numbers
Instead of filename.dat, you could substitute ['myFilename_',num2str(i),'.dat], as the loop increments, it will create a new na...

etwa 5 Jahre vor | 0

| akzeptiert