Top "Matlab" questions

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

In MATLAB, how do I plot to an image and save the result without displaying it?

This question kind of starts where this question ends up. MATLAB has a powerful and flexible image display system which …

graphics matlab
Program to open .fig files saved by Matlab

Is there any program able to open .fig files saved by Matlab?

matlab matlab-figure figure
High-pass filtering in MATLAB

Does anyone know how to use filters in MATLAB? I am not an aficionado, so I'm not concerned with roll-off …

matlab filter signal-processing digital-filter
How should I add a line of best fit to my plot without the statistics package?

I have a scatter plot of data and I want to add a best fit line. All I can find …

matlab scatter-plot best-fit-curve
How can I append to a vector in Octave?

When ever I have to append to a vector I am doing this. A = [2 3 4] A = [A; 3 4 5] I was wondering if …

matlab vector append octave
Using GCC (MinGW) as MATLAB's MEX compiler

I've been given a project to run on MATLAB R2011a. As there are several .c files in there - …

matlab mingw mex
Reshape 3d matrix to 2d matrix

I have a 3d matrix (n-by-m-by-t) in MATLAB representing n-by-m measurements in a grid over a period of time. I …

matlab matrix reshape
Nearest-neighbor interpolation algorithm in MATLAB

I am trying to write my own function for scaling up an input image by using the Nearest-neighbor interpolation algorithm. …

matlab image-processing interpolation nearest-neighbor resize-image
How to add a x-axis line to a figure? (matlab)

I want to add a x-axis line at 0 to a Matlab figure so that I can compare my data to …

matlab plot matlab-figure horizontal-line
How to obtain a gaussian filter in python

I am using python to create a gaussian filter of size 5x5. I saw this post here where they talk …

python matlab numpy gaussian