Respondida
Plot of nested for loop for thickness variable
Place figure(1) with a number before for-loop and use plot(results(:,1),results(:,2)) only once. If you use figure() without an...

más de 2 años hace | 0

| aceptada

Respondida
Error using vertcat Dimensions of arrays being concatenated are not consistent.
It seams that if there is a space between the real and imaginary parts of the number, Matlab considers it as two different numbe...

casi 3 años hace | 0

| aceptada

Respondida
uicontrol callback function with single variable
The following works. Though, I cannot explain why function test(~,~,multiple)

casi 3 años hace | 1

Respondida
How to find points between two intersecting lines?
myData = [X,Y]; y1 = 3 - X; y2 = 2/3*X + 4/3; Y1 = Y(Y < y2 & Y > y1); X1 = X(Y < y2 & Y > y1); % or X1 = X(Y == Y1) myData...

casi 3 años hace | 1

| aceptada

Respondida
Why are these two ways of writing the same integral giving me different results?
Use the option 'ArrayValued',true pot1=kappa*rho1*integral(f,0,pi,'ArrayValued',true);

casi 3 años hace | 0

Respondida
Writing titles and x/y labels inside a for loop and if-statements
remove stem(n, x) before if statement

casi 3 años hace | 0

| aceptada

Respondida
3D Plot Color Map Gradation
Try this: cmp=colormap(turbo(256)); caxis([-0.5,0.5]); cmp1=cmp; cmp1(1:128,:)=flipud(cmp1(129:256,:)); colormap(cmp1); co...

casi 3 años hace | 0

| aceptada

Respondida
Matrix display answers without sigmas
You may be running your code in the live editor. Running the code in a usual script or command window displays the result in t...

casi 3 años hace | 0

| aceptada

Pregunta


minor grid in consecutive plots
If I run the following code (within a script or command window) several times, then the minor grids will be 'on' only every othe...

casi 3 años hace | 1 respuesta | 0

1

respuesta

Respondida
How can I minimize the outer space for the figure or plot
You can do as follows: x=-2*pi:0.1:2*pi; y=sin(x); figure(1) ax=gca; ax.Position=[0.075 0.075 0.9 0.9]; % default position ...

casi 3 años hace | 1

Respondida
How to make a odd number plot look aligned using subplot or tiledlayout?
Happy with the following? x=-2*pi:0.1:2*pi; y1=sin(x); y2=cos(x); y3=sin(x); y4=sinh(x); y5=cosh(x); figure(1) clf su...

alrededor de 3 años hace | 0

| aceptada

Respondida
How do I create two legends in one GScatter Plot?
Rearrange your code in the following sequence: figure(); clf hold on gs1 = gscatter(data(:,1),data(:,2),target,[],[],20); g...

más de 3 años hace | 0

Pregunta


another app designer tooltip bug?
I have quite a few uicontrols in my_ App, which I have just migrated from GUIDE to Appdesigner. Because HTML does not work in Ap...

más de 3 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How to display special characters in tooltip?
Symbols <, > and & are displayed in tooltip in Appdesigner as &lt;, &gt; and &amp; Is the way to display those symbols correctl...

más de 3 años hace | 1 respuesta | 1

1

respuesta

Pregunta


Tool tip bug in App Designer?
There is a problem of dysplaying a tool tip when edit field of small size is placed on the edge of app's frame. classdef test2 ...

casi 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
Index exceeds the number of array elements (0).
lengths of L and framemax must be equal try L = d2:(d3-d2)/100:d3; framemax = length(L);

alrededor de 4 años hace | 0

Pregunta


multiplication by 0.5 vs division by 2
I tried the following with two options - matrix and scalar clear; N = 1e7; tic for n = 1:N % a=[n n;n n]/2; a = n/2; b...

más de 4 años hace | 0 respuestas | 1

0

respuestas

Pregunta


is it a bug?
The code below (i) does not produce an error message about not matching x and y; it can be explained by implicit expansion in ...

más de 4 años hace | 2 respuestas | 0

2

respuestas

Pregunta


which way to call function is better?
I have more than hundred of input parameters in myfunc and I am using the following way to call the function after grouping the ...

más de 4 años hace | 2 respuestas | 0

2

respuestas

Respondida
GUI: Can't access data from another callback function with handles
G A on 31 Aug 2019 at 8:38 Put the line guidata(hObject, handles); at the end of your function control_browse_button_Callbac...

más de 4 años hace | 0

| aceptada

Respondida
How can I generate equal visual witdh bars with bar graph and log absciss scale ?
Instead of making the x-scale logarithmic by set(gca, 'xscale','log'), use linear x-scale and log10(Frequency) as X

más de 4 años hace | 0

| aceptada

Pregunta


is it a bug?
In the following code, if view(2) or view(0,90) is defined before axis() which is not auto, then a default 3D figure will be plo...

más de 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
Creating a contour plot of magnitude in 3D
Something like this? a=-1:0.1:1; b=-1:0.1:1; [X,Y]=meshgrid(a,b); Z=X.^2+Y.^2; M=[0.5 1]; hold on grid on surf(X,Y,Z), ...

más de 4 años hace | 1

Pregunta


is it a bug?
str2num('"abc"') ans = "abc"

más de 4 años hace | 1 respuesta | 0

1

respuesta

Respondida
Not obtaining the right shape with matlab plot
Add a dot ./ in the line: si=atan(sin((N+1).*phi)./(R./r3-cos((N+1).*phi)));

casi 5 años hace | 1

| aceptada

Pregunta


how can I do it without using eval
There are quite a few handles of uicontrols and uipanels named h1,h2...hN in my code exported by GUIDE. I want to create structu...

casi 5 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Is there the more elegant way to do this?
By trial and error I came to the following solution for choosing in my GUI a colormap and the number of colors to be used for my...

casi 5 años hace | 1 respuesta | 0

1

respuesta

Respondida
Using Push Button to Export a String to an Edit Textbox (GUI)
set(handles.edit1,'String', Name); % Displaying my string "Name" into my Edit Textbox. Put this line in your pushbutton4_Callb...

casi 5 años hace | 1

| aceptada

Pregunta


not documented in Matlab?
Both, ishandle(H) and ishghandle(H), are given in doc with only one input argument possibility, however ishghandle(H,'property...

casi 5 años hace | 0 respuestas | 0

0

respuestas

Pregunta


Two fields Tooltip and TooltipString duplicating each other.
I was playing with my GUI exported by GUIDE from fig-file and found that there are two fields in object properties containing th...

casi 5 años hace | 1 respuesta | 0

1

respuesta

Cargar más