Anvinder Singh
Followers: 0 Following: 0
Statistik
RANG
261.869
of 295.448
REPUTATION
0
BEITRÄGE
16 Fragen
3 Antworten
ANTWORTZUSTIMMUNG
25.0%
ERHALTENE STIMMEN
0
RANG
of 20.227
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 153.872
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
When clicked on Matlab icon does not start Matlab
Mine says Unknown application only but still it doesnt work.
fast 8 Jahre vor | 0
Frage
insert a small matrix inside a big matrix
i have a 1000 x 1000 matrix and a 45 x 45 matrix. both have random numbers. how can i insert the small matrix in the bigger one ...
mehr als 8 Jahre vor | 1 Antwort | 0
1
Antwortzero padding in matrix
Just struck my brain ! Thanks Azzi Abdelmalek for the quick response.
mehr als 8 Jahre vor | 0
Frage
zero padding in matrix
Hi, I have a 5x5 matrix and i would like to pad it with zeros such that its size becomes 200x200 and the 5x5 matrix is in the ...
mehr als 8 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
optimization of a buffer controller system (VLSI signal processing architecture)
Hi, I have 7 processors in my system and it has 11 buffers. There are feedback loops and i want to find out the optimized freq...
mehr als 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
I want to change the gray scale from [0 1] to [0 500]
I want to change the gray scale from [0 1] to [0 500] and have used the following functions b= imadjust(a,[0; 1],[0; 500]) ...
mehr als 8 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
change color intensity of matrix for some pixels
I have a matrix and it has 2 squares, i have used "a = ones(256, 256, 3);" so it gives me a white background. I wantt to change ...
mehr als 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
poisson random variable for 2d array
Hi, So far i have been using poisson random function to give it a value of mean and the dimensions of the matrices to give me de...
mehr als 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
poisson random variable for 2d array
Hi, So far i have been using poisson random function to give it a value of mean and the dimensions of the matrices to give me ...
mehr als 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
poisson random variable and adding noise to it,
Hi, I have a 2d poisson random variable to wchi i give a mean value and i am looking at the graph which looks fine. But as soo...
mehr als 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
change color intensity of rectangles made using matrix
Hi, Can anybody help me understand the concept of color intensity in the following : I have 2 rectangles of black color. I wan...
mehr als 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
change color of output graph
I have a matlab plot (draw rectangle using matrix) but it shows the output in blue color whereas i want it in black color. How c...
mehr als 8 Jahre vor | 3 Antworten | 0
3
AntwortenDrawing rectangles using matrices.
The y axis of the graph is still reversed. I have tried axis([0,280, 0,280]); and set(gca, 'ydir', 'reverse'); % or 'normal'
mehr als 8 Jahre vor | 0
Frage
plot a quadratic equation
I am to plot a quadratic equation and see how it looks . This is my code : x=[-1:0.05:3]; f=(3*(x.^2))-(2*x); plot(f) xlim(...
mehr als 8 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
Drawing rectangles using matrices.
Hi, I need to draw a figure as shown in the picture using 256x256 matrix. There should be two rectangles and the rest of the...
mehr als 8 Jahre vor | 4 Antworten | 0
4
AntwortenFrage
poisson function help !
I need to imlement a poisson function. In matlab it asks for the value of lamda and x both in order to plaot the function bu...
mehr als 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
I want to use a floating point matrix (2d) or a 2d array to make a simple basic image (be it square or rectangle) and then convert it to grayscale and add poisson noise to it. But the code i have is not working.
a = repmat(0:0.01:0.5,100,5); i = mat2gray(a); j=imnoise(i,'poisson'); imshow(i) figure(); imshow(j) It shows the same...
mehr als 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
When i plot a grayscale image and check the value of a pixel using data cursor, it shows me the values between 0 and 1 which looks reasonable but it has a RGB scale. Can a grayscale image has RGB Values ?
x = rand([100 50]); i = mat2gray(x); imshow(i)
mehr als 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Hi, I want a 2d array of rows and columns filled with floating point numbers (matrix) which can be converted to a grayscale image.
Should i use the mat2gray function of matlab ? I want to program my own image and fill it with numbers.
mehr als 8 Jahre vor | 1 Antwort | 0