MATLAB is a high-level language and interactive programming environment for numerical computation and visualization developed by MathWorks. Questions should be tagged with either [tag:matlab] or [tag:octave], but not both, unless the question explicitly involves both packages. When using this tag, please mention the MATLAB release you're working with (e.g. R2017a).
I am writing a program where I need to delete duplicate points stored in a matrix. The problem is that when it
I have a function that takes optional arguments as name/value pairs. function example(varargin) % Lots of set
Is there a built in MATLAB function to find out if a matrix contains a certain value? (ala PHP's in_array
This question arose out of something strange that I noticed after investigating this question further... I al
Does anyone know how to count the number of times a value appears in a matrix? For example, if I have a 1500
My question is easily summarized as: "Why does the following not work?" teststruct = struct('a',3,&
I have created a MATLAB plotting with the plot() function. How do I change the window title of the generated f
I want to change Font Size for xlabel, ylabel, axis size, legend font size a.k.a everything at once, is this p
Suppose I have a function f() and I want to use it in my_file.m, which is a script. Is it possible to have th
In our shoestring operation we need to prototype algorithms in some higher-level language before committing to
I have a problem. I need to iterate through every element in an n-dimensional matrix in MATLAB. The problem is
In a slide within the introductory lecture on machine learning by Stanford's Andrew Ng at Coursera, he gi
All I want to do is make the width greater and the height smaller. I'm just doing raster plots but this
Does MATLAB have any support for hash tables? Some background I am working on a problem in Matlab that requi
Is there a way to extend a vector by making it repeat itself? >v = [1 2]; >v10 = v x 5; %x represents s
I'm a little surprised that MATLAB doesn't have a Map function, so I hacked one together myself sinc
What is the difference between the & and && logical operators in MATLAB?