Réponse apportée
Passing output from a ButtonDownFcn callback function
Callback functions for Handle Graphics objects don't return output arguments. [Where would it return those output arguments to? ...

environ 2 ans il y a | 0

Réponse apportée
scope marker to line
The Scope block in a Simulink model will plot the data that is passed into it. If you want the block's plot to show the signal l...

environ 2 ans il y a | 1

Réponse apportée
How to count the number of scatter points of each color
Rather than creating one scatter plot for each individual point, I'd use that loop to create a vector of data that indicates in ...

environ 2 ans il y a | 1

Réponse apportée
is matlab automatically updating xlim and ylim?
If you want to prevent MATLAB from automatically updating the axes limits when you add new data to the axes, set the XLimMode, Y...

environ 2 ans il y a | 0

Réponse apportée
intarpulation on a sin wall
Just based on the code you showed, the main suggestion I have is not to recreate the scatteredInterpolant object every time. Jus...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Unexpected prompt characters on command line output
Rather than piping the contents of the file to MATLAB, do you see this same behavior if you use the -batch startup option listed...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
Does fread use cast when reading non-integer byte data
MATLAB doesn't have a 14-bit integer type. The closest larger type is the signed 16-bit integer type int16. From the fread docum...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
is there way to convert this python code to matlab code? how can i convert python code to matlab? this is the code that I want to convert:
Do you need to convert the code or do you just need to run the code? If the latter, see this section of the documentation.

environ 2 ans il y a | 0

Réponse apportée
Average Calculation and Array in For Loop
When i is equal to 1, attempting to index into m with i-1 (otherwise known as 0) as an index would error if the short-circuit &&...

environ 2 ans il y a | 0

Réponse apportée
Still waiting for my order to be processed
Please contact Customer Service directly using this link and ask about the status of your order.

environ 2 ans il y a | 1

Réponse apportée
Flipping Sign provide wrong information and Answers
How exactly does this reordering "change the meaning of the equation"? The derivative of with respect to is . In this case, x ...

environ 2 ans il y a | 2

| A accepté

Réponse apportée
Find Number of Elements in an Array
Yet another way to do this: A = ['KM'; 'KL'; 'MN'; 'KM'; 'MM'; 'KL']; [counts, values] = histcounts(categorical(cellstr(A)))

environ 2 ans il y a | 0

Réponse apportée
How can I verify an isomorphism relation between two graphs that join cube and octahedron vertices?
Build the two graph objects then call either isisomorphic or isomorphism on it. G_1 = graph([1 2 3 3 3 4 4 4 5 5 5 6...

environ 2 ans il y a | 0

Réponse apportée
With the new ODE command (matlab 2024a), I'd like to parametrize the ICs and make, for example, x0=[p(1); p(5)] and then compute SENSITIVITIES!
If I understand what you're asking, I think you could just modify the Examine Parameter Sensitivity example on the ode documenta...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Opening a Figure from a Function - Not enough input arguments
This line of code: flowmeasurementfigure.Callback = {@flow_measurement,halfscreensizecentre,figurecolour} % ERROR ON THIS L...

environ 2 ans il y a | 0

Réponse apportée
Discrepancy in functions between MATLAB versions
What does the following command show when run in each of the versions of MATLAB? which -all fit My guess is that you have Curv...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
How to insert dash-line in a matlab figure?
You could use the yline function or you could set the axes properties YGrid and GridLineStyle. x = 1:10; y = x.^2; ax = axes;...

environ 2 ans il y a | 0

Réponse apportée
missing "configure for app" in matlab 2019b app designer
According to the documentation page for appdesigner.customcomponent.configureMetadata this function was introduced in release R2...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
I'd like to do various things, including controlling the dimensions of the plot box. What I do here with xlim, ylim, and zlim doens't work.
Instead of manually modifying the coordinates, I'd consider using the hgtransform function in conjunction with makehgtform.

environ 2 ans il y a | 0

Réponse apportée
How to process the data that have same row name
Rather than trying to create a table with duplicate RowNames (which as you see from the error message is not allowed) I'd store ...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
How to store users input in a file?
You want to open the file not in write mode ('w') but in append mode ('a'). See the description of the permission input argument...

environ 2 ans il y a | 0

Réponse apportée
Adjusting Convex Hull Area
As an extreme example, what is the convex hull of a single point at the center of a pixel? It's the point itself, with size 0. T...

environ 2 ans il y a | 0

Réponse apportée
Matlab equivalent to Java bigdecimal rounding of Half_up?
In release R2022a we added the argument TieBreaker (which can be used case insensitively) to control how ties are broken in roun...

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Problem with polyfit command (R2015a)
From the polyfit documentation page: "[p,S,mu] = polyfit(x,y,n) performs centering and scaling to improve the numerical properti...

environ 2 ans il y a | 2

Réponse apportée
Is Lisence "Matlab Basic Package" required to use license "Matlab embedded Coder Package"?
If by "Matlab[sic] embedded Coder Package" you mean the Embedded Coder product, the Product Requirements and Platform Availabili...

environ 2 ans il y a | 1

| A accepté

Réponse apportée
How can I customize a built-in Class"HelperOrientationViewer()"
Are you referring to this documentation page? If so use the Copy Command button on that page to copy the command to open the ex...

environ 2 ans il y a | 0

Réponse apportée
The indices for validation and test sets are not being assigned correctly by 'divideind'
Can you confirm you're using the divideind function included as part of Deep Learning Toolbox? which -all divideind When I run...

environ 2 ans il y a | 0

Réponse apportée
how to get variable of function in for loop
Don't call max twice. Call max once with two output arguments and specify 'all' as the dimension over which to operate. That sec...

environ 2 ans il y a | 1

Réponse apportée
Assign column names in a workspace table
Use the renamevars function.

environ 2 ans il y a | 0

| A accepté

Réponse apportée
Converting between x,y cartesian variables to angle in symbolic variables
So instead of the Cartesian coordinate form of those points, you want a polar coordinate form? syms x y [th, r] = cart2pol(x, ...

environ 2 ans il y a | 0

Charger plus