Respondida
Matlab figure: Keeping same font when opening figure in matlab figure window
The figures within the Live Editor (and figures created by the uifigure command) are using web graphics for rendering, while fig...

7 meses hace | 1

| aceptada

Respondida
How to pop-out figure from tiled figure in editor (2022b)
I don't believe there was ever an icon that allowed you to pop-out one axes from within figure and create a new figure, but it w...

7 meses hace | 2

| aceptada

Respondida
How can I make an animating plot moving with the speed I predefined?
This is a very basic/crude example, but it shows some basic concepts: y0 = 0; % Starting location v0 = 100; % Starting velocit...

8 meses hace | 0

| aceptada

Respondida
Unrecognized function or variable 'findobj'.
findobj is a built-in function and as such should "just work". The only thing I can think is that perhaps you accidentally shado...

8 meses hace | 0

Respondida
No API supports functions `bar` and `legend` in multi-figure
You can only have one legend entry per bar object, and each of your calls to the bar command creates only one bar object. You h...

9 meses hace | 0

| aceptada

Respondida
Set figure coordinates by clicking on it
See if ginput does what you need. There are a few examples on the doc page. I'm pretty sure you can replace the word capturepoi...

9 meses hace | 0

Respondida
one of the colorbars is going out of the figure window
The issue you are running into is due to this line of code: linkprop([ax(1), ax(2)], {'XLim', 'YLim','Position', 'View'}); Tha...

10 meses hace | 1

| aceptada

Respondida
Is it possible to plot a curve with changing colours under a single plot?
As others have noted, you cannot use the plot or line commands to create a multi-color line in MATLAB today, but this is possibl...

10 meses hace | 1

Respondida
Generic get/set methods for class properties
You may be able to do something like this by implementing subsref (and/or subsasgn), but it isn't for the faint of heart. Using...

11 meses hace | 0

Respondida
Extract 2d slice from a 3d matrix
If you have a 3-D matrix, and you want just a single X-Z slice, you probably need a mix of indexing and either shiftdim or permu...

11 meses hace | 0

| aceptada

Respondida
Precreated axes with datetime ruler and time zones
I believe the issue you are facing is that the XAxis has a specific time zone that is initialized when you first call any plotti...

alrededor de 1 año hace | 0

| aceptada

Respondida
Time Series Plot X-Axis Values Wrong Timezone - help please!
I think the problem you are having is that the data, when read from ThingSpeak, creates a datetime object with no TimeZone speci...

alrededor de 1 año hace | 0

Respondida
Incorrect TimeZone displayed on plot
I believe the issue you are facing is that the axes/ruler has a specific time zone that is initialized when you first call plot....

alrededor de 1 año hace | 0

| aceptada

Respondida
.TimeZone data not applying to plot
I believe the issue you are facing is that the axes/ruler has a specific time zone that is initialized when you first call plot....

alrededor de 1 año hace | 0

Respondida
How do I change the timezone of the X axis on an existing plot?
Starting in MATLAB R2023a, you can now update the time zone of the x-axis on existing plots by setting the ReferenceDate on the ...

alrededor de 1 año hace | 1

| aceptada

Respondida
how to polar plot excel data in 2D?
Your current code: M = xlsread('AntennaA.xlsx', 'H2:H26'); Is only returning a single column of your matrix (column "H"). The...

alrededor de 1 año hace | 1

Respondida
struct for multiple shapes with similar inputs
There are options for doing this without using classes, but I think classes is probably what you want to do. I'm not sure I fol...

alrededor de 1 año hace | 1

Respondida
Error in function streamline: interp1 sample points must be unique.
The issue you are having is the form of your X and Y data you are providing as input to streamline. The streamline doc page says...

alrededor de 1 año hace | 1

Respondida
Join Multiple Tables horizontally (can have duplicate variables) in which some tables might be empty.
If your goal is to simply concatenate two tables, such that the first row of each table is combined into the first row of the ou...

alrededor de 1 año hace | 0

Respondida
how to read serial pixel data into matrix without having to perform transpose operation
I can't think of any operation that can scale and transpose the data simultaneously, short of writing your own MEX function, whi...

alrededor de 1 año hace | 0

Respondida
timer doesn't work
@Walter Roberson already pointed you to the documentation on how to Share Data Between Workspaces, which provides several ways t...

alrededor de 1 año hace | 0

| aceptada

Respondida
Filled contour plot on other planes (X-Z or Y-Z)
contourf works fine when used with an hgtransform, except it is not updating the automatically selected limits correctly, so you...

alrededor de 1 año hace | 1

| aceptada

Respondida
String convertion to date
Note, I don't speak Spanish, so I'm not sure of the proper user of "de" and "del", so this answer may need to be adjusted. I su...

alrededor de 1 año hace | 1

Respondida
Locking the Legend even if the object is deleted
As @Bjorn Gustavsson suggests, your best bet is to create proxy objects that are represented in the legend, but are not visible ...

alrededor de 1 año hace | 0

| aceptada

Respondida
How to close a figure used for keypress function?
As @W. J. stated, your code seems to run fine if you just remove the call to UserFeedback from after the call to waitfor. Alter...

alrededor de 1 año hace | 0

| aceptada

Respondida
How to use multiple colorbars on one figure?
There are two concepts that I think you may be confusing: The colormap which is a set of colors used to map from data to color....

alrededor de 1 año hace | 2

| aceptada

Respondida
Figure Subplot Tiles Customization
I don't see an attached picture, but I think I understand what you are trying to do. First, I recommend trying tiledlayout inst...

alrededor de 1 año hace | 1

| aceptada

Respondida
Write a row and column vector as matrix index
Is meshgrid or ndgrid what you are trying to do? [X,Y] = meshgrid([4 5 3],[4 5 3]) [X,Y] = ndgrid([4 5 3],[4 5 3]) After call...

alrededor de 1 año hace | 1

Respondida
imagesc or equivalent with datetime as x axis.
If you are using MATLAB R2023b or newer: Starting in MATLAB R2023b, you can now work with images on datetime rulers natively. ...

alrededor de 1 año hace | 1

| aceptada

Respondida
connect nodes (coordinates of a matrix rx3) with a line
You can specify the LineWidth when you call the plot command. data = readmatrix('data.txt'); x = data(:,1); y = data(:,2); s...

alrededor de 1 año hace | 0

Cargar más