Community Profile

photo

Salaheddin Hosseinzadeh


Glasgow Caledonian University

Last seen: 1年以上 前 2013 年からアクティブ

Followers: 0   Following: 0

連絡

Python/MATLAB, AI, Deep learning, Signal & Image processing, Networking, Cybersecurity, Wireless communication

Programming Languages:
Python

統計

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

バッジを表示

Feeds

表示方法

送信済み


Integer/Discrete Optimization with Simulated Annealing
Turning MATLAB's Simulated Annealing to Integer/Discrete Optimization

4年以上 前 | ダウンロード 6 件 |

Thumbnail

送信済み


Depth Estimation with Stereo Vision Using Two Single Cameras
Depth estimation using two single cameras. Make your own stereo camera

4年以上 前 | ダウンロード 7 件 |

Thumbnail

送信済み


3D Ray Tracing For Indoor Radio Propagation
3D Ray Tracing To Estimate Signal Strength in Indoor Environment and Estimate Propagation Loss

5年弱 前 | ダウンロード 19 件 |

Thumbnail

送信済み


Multi wall (COST231) Signal Propagation Models + Python Code
Estimates the propagation loss using COST231 & free-space path loss models

約5年 前 | ダウンロード 5 件 |

Thumbnail

送信済み


PYTHON/MATLAB optimization for log-distance model + Example
Submission contains both Python and MATLAB codes. They demonstrate non-linear regression analysis (least square) of radio propag...

約5年 前 | ダウンロード 1 件 |

Thumbnail

送信済み


Pulse data segmentation
Optimized Pulsewidth, Extract single polarity pulses

約6年 前 | ダウンロード 1 件 |

Thumbnail

回答済み
How to get image in RGB
Hi I Can't find _*gray2rgb*_ function in MATLAB documentation! What does that do exactly? Have a look at this link, it may h...

7年以上 前 | 0

送信済み


Electron Beam Measurement Using Deblurring (deconvolution)
APWD_V5 corrects the electron beam measurements suffering from linear motion blur.

7年以上 前 | ダウンロード 1 件 |

Thumbnail

回答済み
How to plot frequency spectrum of a signal in matlab?
Hi there! I don't know why your instructor didn't like it! Maybe it's missing a division and he is picky on that! fftNo...

8年以上 前 | 1

送信済み


Sudoko Solver
Solves Sudoko

9年弱 前 | ダウンロード 1 件 |

Thumbnail

送信済み


Simple Demo of Hough Transform Implementation
Simple Demo of Hough Transform Implementation

9年弱 前 | ダウンロード 1 件 |

Thumbnail

回答済み
How to plot 2 histograms on the same axis?
Hi, Create a figure before using hist, create an axes in the figure and get its handle. Use hold command to allow multiple gr...

9年弱 前 | 0

回答済み
How to design a high pass filter and test the filter by a signal
Hi, Type fdatool in the MATLAB command window. It opens the Filter Designa and Analysis window, where you can design your ...

9年弱 前 | 0

回答済み
error while evaluating uimenu callback( in fuzzy toolbox)
Sounds like a terrible situation. You can't even open it to edit things. Is it possible to make a definition/coding violation in...

9年弱 前 | 1

| 採用済み

回答済み
How change somme values on a matrix?
Hi Biza, It sounds like you want to do thresholding. A = A>20; % this makes A a logical matrix of 0 and 1, 1 is when A <...

9年弱 前 | 0

| 採用済み

回答済み
I think my answer is not correct for this question, anyone can help me to check it? Thanks
Hi, It matches with your flowchart, Why do you thing it is not correct?

9年弱 前 | 0

| 採用済み

回答済み
Hi, I would like to ask if my answer is correct or not, here is the question.
Hi, Looks alright. You can use xlim, ylim to limit the view and see the zero crossing location better, however assuming th...

9年弱 前 | 0

| 採用済み

回答済み
I have some problem when plotting the graph, anyone can help? Thanks
Hi, You need to store y first. x = -10:10; for i = 1:numel(x) y(i) = 2^(0.4*x(i))+5 end plot(x,y,'g')

9年弱 前 | 0

| 採用済み

回答済み
Cross-correlation for signal matches
Dear Steven, Here is a example code i used to find the phase-shift between two different signals. I used cross-correlation to...

9年弱 前 | 0

回答済み
How can I fix an Out of Memory error?
Hello Hadi, Mainly you're running out of RAM memory. You may have to modify your code to be able to run it. There are diff...

9年弱 前 | 0

| 採用済み

回答済み
How to have a GUI perform an action only when a pushbutton is pressed?
Hi Sicilian, I was searching how to do the same thing a few months ago. You want the motor to be on while you're holding t...

9年弱 前 | 1

回答済み
Matlab - FFT of Gaussian - Equivalency
I'm not sure what you're intending to do. Do you know about fftshift() command? To me it sounds like you're having problem...

9年弱 前 | 0

回答済み
how can I add zeros elements to a matrix?
Hi Moein, there are different ways to do this. One of which is to define a fully zero matrix with all zeros newMatrix = ...

9年弱 前 | 6

| 採用済み

回答済み
how to find variance of audio signal?
Hi, You can read the wav file with wavread() command and find the variance with var() command. Hope that's enough

9年弱 前 | 0

回答済み
using subplot(m,n,p,ax) in a loop
Just put figure outside the loop. If you want to change each axis or maybe axes properties, use xlim ylim in your for loop y...

9年弱 前 | 0

回答済み
drawing a triangular wave
Hi Soloby, You just asked a question on fuzzy logic, I assume this is in the same area! Have you tried trimf or trapmf mem...

9年弱 前 | 0

| 採用済み

回答済み
Fuzzy Operation (Add, subtract, multiply, and divide) without using the built-in matlab function?
Hi Soloby, What's y all of a sudden?!

9年弱 前 | 0

回答済み
averages of a matrix
Hi Anthony, This is very basic, please read more output = mean(A.*B) That's all

9年弱 前 | 1

回答済み
How to write a 'text' at the end of another one
Hi Alessandro, You have to use text, see matlab help for text please text(Xposition,Yposition,'Your String!'); To plo...

9年弱 前 | 0

回答済み
Hi. i want to plot some thing like this picture how can i do this ?
You may have to do this with two plot commands, one to create a red line one to create a gigantic square, which you can do...

9年弱 前 | 0

さらに読み込む