photo

Junaid


Asian Institute of Technology

Last seen: fast 4 Jahre vor Aktiv seit 2011

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

6 Fragen
115 Antworten

File Exchange

1 Datei

Cody

0 Probleme
3 Lösungen

RANG
180
of 300.381

REPUTATION
647

BEITRÄGE
6 Fragen
115 Antworten

ANTWORTZUSTIMMUNG
66.67%

ERHALTENE STIMMEN
215

RANG
6.445 of 20.941

REPUTATION
174

DURCHSCHNITTLICHE BEWERTUNG
2.80

BEITRÄGE
1 Datei

DOWNLOADS
1

ALL TIME DOWNLOADS
1699

RANG
72.323
of 168.477

BEITRÄGE
0 Probleme
3 Lösungen

PUNKTESTAND
40

ANZAHL DER ABZEICHEN
1

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Highlights

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Personal Best Downloads Level 1
  • First Review
  • 5-Star Galaxy Level 1
  • First Submission
  • 6 Month Streak
  • Thankful Level 1
  • Pro
  • Revival Level 1
  • Knowledgeable Level 4
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Euclidian Norm and Brightness between 2 images
You question is not quite clear, if you take the Euclidean norm between two images, then the formula you have written would retu...

mehr als 7 Jahre vor | 3

Beantwortet
How to select only one column from multiple matrices, to create a new matrix of them?
this should work str = 'acc_'; index = 1; final = zeros(2560,797); % declare your new matrix for i=1:797 new_st...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Threshold the matrix with vector
One possible way is .. lets us assume that N is 1 x n vector N = repmat(N,size(M,1),1); M_binary = M > N; or...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Why Matlab publish code function show only the last figure of every cell?
If there are different plot figures then there should be *subplot* function, or if on one figure you have many curves, then af...

etwa 13 Jahre vor | 0

Beantwortet
while using som how to cluster the data into three clusters?
Try using <http://www.vlfeat.org/ VLFEAT> matlab implementation for Clustering, it has many algorithms with tutorial and example...

etwa 13 Jahre vor | 0

Beantwortet
Precision and Recall based on Matrix
As I understand, you have 10 copies for your each given searching image. So I try to do it with loops based on some assumptions ...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
How to find minimum or maximum value
min (matrix) return the minimum. If you have more then one matrix with different dimensions then you can do it like this. Let...

etwa 13 Jahre vor | 0

Beantwortet
How to get the binary value inside the binary image?
Could you explain the example little more. Let say you have binary image *B*, it is already binary so you can convert into ar...

etwa 13 Jahre vor | 2

| akzeptiert

Frage


reduce the length by summing the bins
dear all, Let say I have matrix of Histograms, where each column is one histogram vector. What I want is to sum two bins each...

mehr als 13 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
How to these permutations?
Take a look over <http://www.mathworks.com/matlabcentral/fileexchange/20011-nchoose-v2-1-mar-2010 this link>. This might be usef...

mehr als 13 Jahre vor | 1

Beantwortet
Compare two strings based on ASCII dictionary order
Can you give one example. As I understand, you can do it by compare operator. a = 'abd'; b = 'abc'; a <= b out...

mehr als 13 Jahre vor | 0

Beantwortet
matrix
C = A * B; Just make sure that dimensions of A and B are consistent to be multiplied as Suggested by Wayne King above.

mehr als 13 Jahre vor | 1

| akzeptiert

Beantwortet
image/ imagesc of matrix
could you share your code. For quick answer. You can change the x label by this. xlabel('This is the label caption'); ...

mehr als 13 Jahre vor | 2

Beantwortet
Averaging Matrix and store it in a new matrix
try this if it works for you. x = [1 2 3 4; 5 6 7 8; 9 10 11 12;13 14 15 16]; f = fspecial('average',3,3); % create filter...

mehr als 13 Jahre vor | 1

Beantwortet
distance between two matrices
hamming is not for hamming distance I guess. What is the type of input you want to compute the hamming distance. Hamming dist...

mehr als 13 Jahre vor | 1

| akzeptiert

Beantwortet
How to count average value from each row of matrix?
mean(A, 2) will you average by row.

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
error using ==> times
I think whatever vector you are trying to multiplying should have same class (data types). So first you type cast to one class. ...

mehr als 13 Jahre vor | 1

Beantwortet
Generation of a matrix
you can generate matrix by number of ways. For example: m = zeros(m,n); m is the matrix of m rows and n columns. If matrix...

mehr als 13 Jahre vor | 0

Beantwortet
rescale histogram
I guess if you normalize your histogram, you will your desired output .. May be ? As after normalizing your histogram, the su...

mehr als 13 Jahre vor | 0

Beantwortet
how to manipulate new point on graph?
hold your figure by following command. hold on; then add point. plot(x,y);

mehr als 13 Jahre vor | 1

| akzeptiert

Beantwortet
initial centroid in k-means
Usually initial centroids are Random. You can initialize them with any values you like.

mehr als 13 Jahre vor | 1

| akzeptiert

Beantwortet
Loading images in a variable..
you share what is your error and also post that in error as new Question. In given code. ([*.jpg']); should be this ...

mehr als 13 Jahre vor | 1

Beantwortet
How to find the Union of two 2D arrays of different size
in your given example, either dimension should be same, A and b should have same number of columns. I think you can make your 2-...

mehr als 13 Jahre vor | 1

| akzeptiert

Beantwortet
Loading images in a variable..
There are number of methods to compare two images. Most famous are Histogram based comparison, Entropy based comparison-- these ...

mehr als 13 Jahre vor | 2

Beantwortet
Loading images in a variable..
let say your Directory where you image is myDir = 'images/'; and extension of all images are jpg ext_img = '*.jpg'...

mehr als 13 Jahre vor | 3

| akzeptiert

Beantwortet
Loading images in a variable..
to load image in a variable. a = imread('myimage.jpg'); and you can check ... imshow(a); and you can do any ...

mehr als 13 Jahre vor | 2

Beantwortet
memory allocation problem
one way is to increase the RAM. or try to understand your data. If your data is integer and its class (data type) is double then...

mehr als 13 Jahre vor | 2

Beantwortet
MATLAB slow start
# One possible article may resolve your problem is <http://www.mathworks.in/support/solutions/en/data/1-186EP/index.html?solut...

mehr als 13 Jahre vor | 2

Beantwortet
why float no. become integer?
it might be because of C1, thought in given example it should not do this but if somewhere you have changed c1 to integer then i...

mehr als 13 Jahre vor | 1

Beantwortet
imshow - plotting a circular image, how to make corners white?
Could you share your matrix. Or try following command. colormap gray; This will make show boundary either black or white...

mehr als 13 Jahre vor | 0

Mehr laden