Top "Matlab" questions

MATLAB is a high-level language and interactive programming environment for numerical computation and visualization developed by MathWorks.

What's the difference between & and && in MATLAB?

What is the difference between the & and && logical operators in MATLAB?

matlab logical-operators short-circuiting
How to change the window title of a MATLAB plotting figure?

I have created a MATLAB plotting with the plot() function. How do I change the window title of the generated …

matlab title plot
How to apply a low-pass or high-pass filter to an array in Matlab?

Is there an easy way to apply a low-pass or high-pass filter to an array in MATLAB? I'm a bit …

matlab filter signal-processing
How to create an executable .exe file from a .m file

I was wondering if there is a way to create a '.exe' file from ' .m' file in MATLAB, …

matlab executable
How to plot a 2D FFT in Matlab?

I am using fft2 to compute the Fourier Transform of a grayscale image in MATLAB. What is the common way …

matlab image-processing plot fft
Call Python function from MATLAB

I need to call a Python function from MATLAB. how can I do this?

python matlab language-interoperability
Mean filter for smoothing images in Matlab

I need to test some basic image processing techniques in Matlab. I need to test and compare especially two types …

matlab image-processing filtering
How do I set default values for functions parameters in Matlab?

Is it possible to have default arguments in Matlab? For instance, here: function wave(a, b, n, k, T, f, …

matlab arguments default
How to display (print) vector in Matlab?

I have a vector x = (1, 2, 3) and I want to display (print) it as Answer: (1, 2, 3). I have tried many approaches, including: …

matlab printf disp
How to normalize a signal to zero mean and unit variance?

I am new to MATLAB and I am trying to built a voice morphing system using MATLAB. So I would …

matlab signal-processing