Réponse apportée
Legend showing same symbol for loop plot
Try this for i=1:size(obs,1) x = V(:,1)'*obs(i,:)'; y = V(:,2)'*obs(i,:)'; z = V(:,3)'*obs(i,:)'; if(grp{i}...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to filter out dates within a datetime list?
Here are the steps you can take. 1. NOAA contains dates and durations in separate variables. Combine them into 1 datetime vec...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
How to control latex TickLabel FontSize?
Two methods Set FontSize property figure() ax = gca(); set(ax, 'TickLabelInterpreter', 'latex', 'YTickLabel','$\frac{a}{b}$'...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How can I give a location to the text written in Yline type plots , without making it an object?
You can specify which side of the axes the label is printed using the LabelHorizontalAlignment property. Alternatively, you c...

plus de 3 ans il y a | 1

Réponse apportée
What is the best way to check the inputs of a function?
I'm sure there are varying opinions on this. Here are some bits that might help with your decision. function argument validat...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
prompt a GUI user to enter different values
Put your dialog in a while-loop that exits when the input conditions are met and regenerates the dialog if the conditions are no...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How to extract specific dates from a datetime table?
Datetimes are rounded down to the start of the day using dateshift. Then, ismember finds matches between the two sets of dates....

plus de 3 ans il y a | 1

Réponse apportée
How to avoid horizontal shifts after applying GroupByColor on boxcharts?
You can create the boxes in a loop, y = magic(5); [nrows, ncols] = size(y); hold on for i = 1:ncols boxchart(repel...

plus de 3 ans il y a | 1

Réponse apportée
Deleting axes changes legend transparency?
In gplotmatrix, the legend is associated with the axes in the upper right corner. When the visibility of that axes is off, the ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
How can I change the font size in the command window for the mode -nodesktop?
Changing the fontsize of the command window programmatically via settings has no effect in -nodesktop. However, starting in R...

plus de 3 ans il y a | 0

Réponse apportée
How to align the figure name to the left ?
Starting in MATLAB R2020b, control the horizontal alignment of title and subtitle using the axis properties TitleHorizontalAlign...

plus de 3 ans il y a | 3

Réponse apportée
Display images instead of numbers in a Matrix.
Here are some solutions using emojis. One emoji, different colors emoji = char([55356 57312]); % "🏠" data = [0 1 0; 1 1 1...

plus de 3 ans il y a | 0

Réponse apportée
How to solve the problem that the hybrid algorithm in mixed integer programming is ignored
As per the documentation (see this page), there are some restrictions on the types of problems that ga can solve when you includ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
What is the meaning of x=x(:).'?
This ensures x is a row vector. It is useful when you are unsure of the size or shape of an input but you need it to be a row...

plus de 3 ans il y a | 1

Réponse apportée
compare variable with different data types
Detect if x is a string or character array Validate the string and convert it to a logical where yes==true Use a conditional s...

plus de 3 ans il y a | 0

Réponse apportée
Can you create frames in Figure?
This demo uses uigridlayout and uipanel to create 4 panels. Using tiledlayout, it creates 4 axes within each panel. You can se...

plus de 3 ans il y a | 1

| A accepté

Réponse apportée
uiprogressdlg does not broadcast PostSet
> Is this a bug or did I just do something wrong? You aren't doing anything wrong. There's a difference in how the CancelReque...

plus de 3 ans il y a | 0

Réponse apportée
How to plot multiple y-axis with data points on the axis
See parallelplot h = parallelplot(rand(3,4));

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
The stop button doesn't terminate the process when pressed.
Looks like status2 = handles.stopval should be status2 = handles.stopval.Value;

plus de 3 ans il y a | 0

Réponse apportée
transparency issue using "plot" function
Applying transparency to line objects is not documented and leads to issues in some circumstances (e.g. live scripts and loading...

plus de 3 ans il y a | 0

Réponse apportée
Plot with the same Y-axis on both sides
You can use yyaxis but you need to link the left and right y rulers so when one changes, the other updates. This comes in handy...

plus de 3 ans il y a | 3

Réponse apportée
How can I put images in a table using gui?
Here's a demo that embeds images in cells of a uitable but as @Walter Roberson mentioned, the image size will be small, and the ...

plus de 3 ans il y a | 4

| A accepté

Réponse apportée
Adjust the axis of bar3 plot
Use this syntax to specify y-coordinates: bar3(y,z) z = rand(4,20); y = [30 35 40 50]; bar3(y,z) ylabel('y axis')

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
Can i convert subplots in tiledlayouts?
See tiledlayout to learn about layout options and spacing. See nexttile to learn about setting the tile location and span. ...

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
No transparency in Livescript
The RGBA color definition for lines is undocumented and does not work with MLX files. The line transparency also will not appea...

plus de 3 ans il y a | 3

Réponse apportée
Increase figure size in livescript
One way to change the figure size in a live script is to set the figure's width and height. fig = figure(); fig.Position(3:4)...

plus de 3 ans il y a | 1

Réponse apportée
Create a diagonal matrix with a for loop from a vector
Here are three way to define a diagonal in a square matrix of zeros that do not require a loop. eye() ML = rand([5 1]) Mout ...

plus de 3 ans il y a | 0

Réponse apportée
how to plot using the slice function the last row and column of a 3 matrix?
The syntax slice(V,xslice,yslice,zslice) plots surface using the vertex data in V at slices specifed by the 2nd, 3rd, and 4th ar...

plus de 3 ans il y a | 0

Réponse apportée
Transformation from datetime to seconds
> I wanna do a transformation from datetime dd:MM:yyyy hh:mm:ss to seconds from a table See a table of format identifies in the...

plus de 3 ans il y a | 0

Réponse apportée
Axes in dialog box turn blank after calling imagesc in pushbutton callback
TL;DR This issues has been fixed in R2025a. Prior to R2025a, fix it by specifying the number of colors in jet() function BtnP...

plus de 3 ans il y a | 2

Charger plus