답변 있음
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}...

대략 3년 전 | 0

| 수락됨

답변 있음
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...

대략 3년 전 | 1

| 수락됨

답변 있음
How to control latex TickLabel FontSize?
Two methods Set FontSize property figure() ax = gca(); set(ax, 'TickLabelInterpreter', 'latex', 'YTickLabel','$\frac{a}{b}$'...

대략 3년 전 | 0

| 수락됨

답변 있음
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...

대략 3년 전 | 1

답변 있음
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...

대략 3년 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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....

3년 초과 전 | 1

답변 있음
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...

3년 초과 전 | 1

답변 있음
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 ...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 3

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 1

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 1

| 수락됨

답변 있음
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...

3년 초과 전 | 0

답변 있음
How to plot multiple y-axis with data points on the axis
See parallelplot h = parallelplot(rand(3,4));

3년 초과 전 | 0

| 수락됨

답변 있음
The stop button doesn't terminate the process when pressed.
Looks like status2 = handles.stopval should be status2 = handles.stopval.Value;

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 3

답변 있음
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 ...

3년 초과 전 | 4

| 수락됨

답변 있음
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')

3년 초과 전 | 0

| 수락됨

답변 있음
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. ...

3년 초과 전 | 0

| 수락됨

답변 있음
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...

3년 초과 전 | 3

답변 있음
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)...

3년 초과 전 | 1

답변 있음
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 ...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 0

답변 있음
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...

3년 초과 전 | 2

더 보기