Beantwortet
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...

mehr als 6 Jahre vor | 0

Beantwortet
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...

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
[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...

mehr als 6 Jahre vor | 0

Beantwortet
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 ...

mehr als 6 Jahre vor | 0

Beantwortet
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...

mehr als 6 Jahre vor | 0

Beantwortet
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...

mehr als 6 Jahre vor | 0

Beantwortet
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...

mehr als 6 Jahre vor | 0

Beantwortet
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...

mehr als 6 Jahre vor | 0

Beantwortet
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...

mehr als 6 Jahre vor | 3

| akzeptiert

Gelöst


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...

mehr als 6 Jahre vor

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

mehr als 6 Jahre vor | 0

| akzeptiert

Beantwortet
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, ...

mehr als 6 Jahre vor | 1

| akzeptiert

Beantwortet
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...

mehr als 6 Jahre vor | 1

Beantwortet
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...

mehr als 6 Jahre vor | 0

| akzeptiert