Community Profile

photo

Gn Gnk


Last seen: 2 years 前 自 2019 起处于活动状态

统计数据

  • First Review
  • Thankful Level 3
  • Explorer

查看徽章

Content Feed

排序方式:

提问


How can i read files inside a folder?
Hello , i have a folder that contains some .dat file . How can i open this folder and then read(for example) the first 4 .dat f...

2 years 前 | 2 个回答 | 0

2

个回答

提问


How can i perform manual convolution in an image MxNx3
Hello , i want to perform manual convolution in an image with a filter (not using conv() or some matlab function) .The problem ...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How can i calculate entropy of an image by using the entropy's type?
Hello , I have a grayscale image 256x256 and i want to calculate its entropy . Basically i want to calculate entropy using this...

3 years 前 | 2 个回答 | 0

2

个回答

提问


How to find the frames resolution ina video?
Hello i am trying to find the resolution of each frame in a video .I tried this : FrameRes=read(V,1); %randomly select the firs...

3 years 前 | 1 个回答 | 0

1

个回答

提问


Why do i get different results when i perform convolution with different ways?
Hello , i have an image 30x30 and i want to perform convolution with a filter 9x9 using 2 methods . Firstly , i need to perform...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How can i reshape a matrix into a vector ?
Hello , How can i reshape an array like this [10 20 30 4...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How can i illustrate the fast fourier transform of an image ?
Hello , i perfrom Fast Fourier Transform on an image .This is my code: I_fft=fftshift(fft2(I_new)); figure(); imagesc(abs(I...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How can i use toeplitz in cell arrays?
Hello , i have 1x38 cell matrix and every cell contains a 38x38 matrix .I want to perform toeplitz() on this cell array but m...

3 years 前 | 2 个回答 | 0

2

个回答

提问


How to create and plot a Gaussing function?
Hello , i want to create a 2D Gaussian function 9x9 and sigma =0.7 using this type : Here is my code: sigma=0.7; nx=9; ny...

3 years 前 | 1 个回答 | 0

1

个回答

提问


How to morphologically open a binary image ?
Hello , i am trying to morphologically open(to decrease the retrieved area) a binary image . However i am getting a black image ...

3 years 前 | 2 个回答 | 0

2

个回答

提问


How can i normalize a greyscale image?
Hello , I've seen many similar questions but i am still confused . I have a grayscale image and i want to normalize it.How can ...

3 years 前 | 1 个回答 | 0

1

个回答

提问


Can i use imerode() function to perform top-hat transform?
Hello , is it possible to perform top-hat transform without using imtophat() . I was suggested to use only the function imerode...

3 years 前 | 1 个回答 | 0

1

个回答

提问


What is the difference between conv2 and imfilter?
Hello , i am trying to convolute an image (512x512) with a filter (3x3) .For this process i am using both covv2() and imfilter(...

3 years 前 | 2 个回答 | 0

2

个回答

提问


How can i use zero-padding in an image?
Hello , I have an image(512x512) and i want to do zero-padding in order to covolute it with a filter . The problem here is tha...

3 years 前 | 2 个回答 | 0

2

个回答

提问


How can i implement subtraction without using for-loop ?
I have a vector J 1000x7 and a vector K 16x7 I want to take each row of J(one at a time) an subtract it from every row of K. ...

3 years 前 | 1 个回答 | 0

1

个回答

提问


Is there a faster way to run my code?
Hello , i wrote the code bellow . Is there any faster and more efficient way to run this code (not using for-loop for example ...

3 years 前 | 3 个回答 | 0

3

个回答

提问


How can i choose specific elements from matrix ?
Hello , i have a mat 3x3 like this one below: H=[001;110;010] I want to choose the elements that contain 2 or more zeros . H...

3 years 前 | 0 个回答 | 0

0

个回答

提问


How can i create a sequence where the symbols have different probabilities?
Hello , I have 4 symbols 0,1,2,3 . How can i create a sequence with these symbols where every symbol should have each own pro...

3 years 前 | 1 个回答 | 0

1

个回答

已回答
How can i find the index of specific value inside an array?
index=find(M==4) % M=[2 4 6 8]; returns the index 2 i wanted

4 years 前 | 0

| 已接受

提问


How can i find the index of specific value inside an array?
I have an array lets say 1x4 with these values : [ 2 4 6 8 ] .How can i find the index that 4(index 2 of the array) is stored f...

4 years 前 | 2 个回答 | 0

2

个回答

提问


How can i create a sequence that every symbol has the same probability as the others?
How can i create a sequence that contains the symbols 0 , 1 , 2 , 3 with the same probability 1/4? For example i created a seq...

4 years 前 | 2 个回答 | 0

2

个回答

提问


How to add zeros in front of an array
Hello , i want to add zeros in front of an array but i want to do that for 3 times and each time the zeros are increasing by1 ....

4 years 前 | 1 个回答 | 0

1

个回答

提问


How can i multiply cell arrays?
Hello , i want to multiply an array H which is 2x2 cell array (each cell contains a 1x500 array) with an array X which is 2x1 a...

4 years 前 | 2 个回答 | 0

2

个回答

提问


How to create a 2x2 matrix?
Hello , i want to create a 2x2 matrix like that : , h is 2x500 matrix . So , i have to create a 2x2 matrix that each cell co...

4 years 前 | 2 个回答 | 1

2

个回答

提问


How can i implement maximum ratio combining method(MRC)?
Hello i want to implement maximum ratio combining . I have 2 antennas(recievers) and one transmitter .So far my code is like thi...

4 years 前 | 0 个回答 | 0

0

个回答

提问


How to create input of linear equalization channel?
Hello , i want to create the input channel to linear equalizer . The project is asking to create random complex channel h ,4-QA...

4 years 前 | 0 个回答 | 0

0

个回答

提问


What cut-off of an output actually means in zero-forcing equalization?
Hello , i have a project and i was asked to equalize a channel( with zero forcing which i did like this : i calculated the ze...

4 years 前 | 0 个回答 | 0

0

个回答

提问


Why am i getting the : errir using inv ,Matrix must be square?
Hello , i have a created a toeplitz matrix H which is 12x8 .I want to run the command: y=inv(H) but the compiler says : Error ...

4 years 前 | 1 个回答 | 0

1

个回答

提问


How can i create a convolution using toeplitz matrix?
Hello , i want to create a convolution between two signals but i need to make this happen using the teoplitz command that creat...

4 years 前 | 1 个回答 | 0

1

个回答

提问


How can i create a sequence?
Hello, I have a sequence Xn: xn ∈ {(±1, ±i)} means xn is an element of the set [-1-i, -1+i, 1-i, 1+i] and i want to create thi...

4 years 前 | 1 个回答 | 0

1

个回答

加载更多