Answered
Adding image under contour lines took away axes and changed EVERYTHING
The following code might help you: I=imread('cameraman.tif'); Irgb = cat(3,I,I,I); imshow(Irgb); hold all; contour(I);color...

6 years ago | 0

Answered
Change Fractal Colors to nuances of red
Building a custom colormap might solve your issue. Similar question can be found here. Tweaking the "hex" vector as shown below...

6 years ago | 0

| accepted

Answered
[App Designer] Can an app accept variables from the base workspace as input arguments?
You can use evalin to achieve the same. In the App Designer right click on the UIFigure, hover over 'callbacks', select ‘Add s...

6 years ago | 0

Answered
Array Index .. values ERROR
Hi Peter, By setting breakpoint on line 13 of the live script GETMASS.mlx I can see that the elements of the array tempsCol ...

6 years ago | 0

Answered
Package app with multiple GUIs (GUIDE)
Hi Patricia, In the Callback of the push button paste only the name (without any extension) of the next GUI where you want to n...

6 years ago | 0

Answered
MATLAB App Designer does not render new fonts
Hi, follow the steps below to achieve the same In the Editor tab of the App Designer click on the Public Property and insert th...

6 years ago | 0

Answered
How to specify thresholding for SWT in a loop?
Hi, I understand that you are trying to perform the same thresholding procedure (as generated by the wavelet analyzer toolbox) f...

6 years ago | 0

Answered
Invalid MEX-file - Gateway function is missing.
MinGW is one of the supported compiler in MATLAB R2018ba for MEX file compilation according to the documentation. Therefore, try...

6 years ago | 0

Answered
i get Undefined variable "NaiveBayes" or class "NaiveBayes.fit".
Hi, I understand that you are trying to use NaiveBayes.fit in MATLAB R2018b. According to the R2014b Release Notes NaiveBaye...

6 years ago | 3

| accepted

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

6 years ago

Answered
Colum Format in uitable is weird
I have brought this issue to the notice of our developers. They will investigate the matter further.

6 years ago | 0

| accepted

Answered
How can I apply Fuzzy Inference System in MATLAB App Designer
Hi, you can use uigetfile to achieve the same. Drag and drop the button onto the designer workspace Right click the button, ...

6 years ago | 1

| accepted

Answered
Using Visual Studio as C++ compiler for MEX files
MinGW is one of the supported compilers in MATLAB R2019a for mex file compilation according to the documentation. Download MinG...

6 years ago | 1

Answered
Putting transfer function expression in the title of a bode plot
MATLAB provides bodeoptions to add various parameters to your bode plot. The following code may help you. tfsym = ns/ds; tft...

6 years ago | 0

| accepted