Réponse apportée
Array of ASCII Characters to String
The issue with your current code is that on line 2 you need to initialize word2 as a character vector instead of a double vector...

8 mois il y a | 0

Réponse apportée
xlabel/ylabel 'HorizontalAlignment' issue
The object used for the X-label and Y-label is the same text object that is created by the text command, and is a general purpos...

8 mois il y a | 4

Réponse apportée
move x axis labels on a heatmap to the top
If you want to do this using documented approaches, you can use a tiledlayout to position an axes below the heatmap, and the man...

9 mois il y a | 3

Réponse apportée
Move axes in 3D plot
Unfortunately, the XAxisLocation and YAxisLocation properties only work for 2D axes. Which means your only option is to draw th...

9 mois il y a | 0

| A accepté

Réponse apportée
How can I remove the tooltip from the exported figure?
This banner should only appear when you first move your mouse over the figure, and it should only remain visible for 5 seconds. ...

9 mois il y a | 2

| A accepté

Réponse apportée
what is subplot and how to use it?
If you are using MATLAB R2019b or later, you should consider using tiledlayout and nexttile instead of subplot. tiledlayout and ...

9 mois il y a | 2

Réponse apportée
How do you make the x-axis in imagesc using datetime values?
Starting in MATLAB R2023b, both the image and imagesc commands support datetime and duration data for the XData and YData proper...

10 mois il y a | 0

| A accepté

Réponse apportée
How can I italicize the label of a heatmap?
Heatmap does allow you to customize the X and Y tick labels, by setting the XData and YData properties (alternatively, you can s...

10 mois il y a | 0

| A accepté

Réponse apportée
Subscripts and supercripts in heatmap axis labels
Starting in MATLAB R2023b, the HeatmapChart now has an Interpreter property. h = heatmap(magic(4),'Interpreter','latex','CellLa...

10 mois il y a | 0

Réponse apportée
LaTex interpreter in Heatmap ax-label
Starting in MATLAB R2023b, the HeatmapChart now has an Interpreter property. h = heatmap(rand(30)); h.XLabel = '$M_{1}$'; h.Y...

10 mois il y a | 1

| A accepté

Réponse apportée
Heatmap title - Interpreter (AppDesigner)
Starting in MATLAB R2023b, the HeatmapChart now has an Interpreter property. h1 = heatmap(magic(4)); h1.Title = 'file_name'; ...

10 mois il y a | 1

Réponse apportée
latex interpreter in Heatmap title
Starting in MATLAB R2023b, the HeatmapChart now has an Interpreter property. M = zeros(5,5); Xax = 1:5; Yax = 1:5; h = heatm...

10 mois il y a | 0

Réponse apportée
Latex formatting on heatmaps (labels, title and all other text)
Starting in MATLAB R2023b, the HeatmapChart now has an Interpreter property. xvalues = {'20 $^\circ$C','30 $^\circ$C','40 $^\ci...

10 mois il y a | 1

Réponse apportée
How to change text interpreter of HeatmapChart?
Starting in MATLAB R2023b, the HeatmapChart now has an Interpreter property. h = heatmap([1 3 5; 2 4 6]); h.Title = '$x^y$'; ...

10 mois il y a | 1

| A accepté

Réponse apportée
Plotting on matlab app panel does not update the tick labels but it overlaps them
You did not share all the code of your app, but based on your pictures, the issue looks like you are creating multiple axes, and...

11 mois il y a | 0

Réponse apportée
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...

11 mois il y a | 1

| A accepté

Réponse apportée
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...

11 mois il y a | 2

| A accepté

Réponse apportée
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...

environ un an il y a | 0

| A accepté

Réponse apportée
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...

environ un an il y a | 0

Réponse apportée
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...

environ un an il y a | 0

| A accepté

Réponse apportée
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...

environ un an il y a | 0

Réponse apportée
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...

environ un an il y a | 1

| A accepté

Réponse apportée
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...

environ un an il y a | 1

Réponse apportée
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...

environ un an il y a | 0

Réponse apportée
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...

environ un an il y a | 0

| A accepté

Réponse apportée
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...

plus d'un an il y a | 0

| A accepté

Réponse apportée
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...

plus d'un an il y a | 0

Réponse apportée
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....

plus d'un an il y a | 0

| A accepté

Réponse apportée
.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....

plus d'un an il y a | 0

Réponse apportée
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 ...

plus d'un an il y a | 1

| A accepté

Charger plus