回答済み
ode45 error rungg- kutta
your error is probably not with the ODE line, but actually running "Simulation", which you are not supplying any arguments to at...

5年以上 前 | 0

回答済み
Solving second order PDE
Does this help: https://www.mathworks.com/help/matlab/ref/pdepe.html I believe that pdepe is available with base matlab. It ap...

5年以上 前 | 0

回答済み
Saving multiple outputs from ODE45 with different dimensions?
I would use cells...also what's with the dual indexing? options can be defined outside since nothing is changing from iteration ...

5年以上 前 | 0

回答済み
Increment a class property everytime calling a class method
subclass from the handle class (default is value class), and you can update properties of the instance without explicitly overwr...

5年以上 前 | 1

| 採用済み

回答済み
How to plot values with different color with "if statement"
look at the documentation for the "scatter()" command. can you do what you want with that?

5年以上 前 | 0

回答済み
App inside app question
If not more than 1 image needs to be displayed at once, maybe just save all the image data internally, have only one axes, and h...

5年以上 前 | 1

| 採用済み

回答済み
Selection of data in timetable
Hmm, so the question is about periodic time ranges...there might be a better way, but maybe you can use "isbetween" on an auxili...

5年以上 前 | 0

回答済み
How can i select cell from table in app designer?
The UITable has a callback for selection https://www.mathworks.com/help/matlab/ref/matlab.ui.control.tableappd-properties.html#...

5年以上 前 | 0

回答済み
Reading data from ASCII file
It would have been helpful to know these things in advance (you hinted at the first, but say it explicitly) Data contains multi...

6年弱 前 | 0

回答済み
Surface Fit over image
Here's my first pass thoughts: First steps: Obtain X and Y coordinates of your pixels ensure your pixel values are of type do...

6年弱 前 | 1

| 採用済み

質問


How to identify ui component classes that other ui components can be children of
I am trying to identify ui components like uipanels, uigridlayouts, uitabs, etc., that may contain other ui components as childr...

6年弱 前 | 1 件の回答 | 0

1

回答

回答済み
Plotting points in 3D with mesh
For just visualizing the chosen data in a surface, does this look like what you want? clc; close all; clear; N = 500; X...

6年弱 前 | 0

| 採用済み

回答済み
How can I solve a partial derivative equation if it does not contain a time derivative in MATLAB?
If you mean by "no time variable" that your equation is elliptic in more than 1 independent variable, then unfortunately you'll ...

6年弱 前 | 0

| 採用済み

回答済み
[App Designer] Get the object indentifier that triggered the callback
I think a cleaner way is to pass an identifier with the callback definition: ASpinner.ValueChangedFcn = @(evnt)app.VChanged(evn...

6年弱 前 | 0

回答済み
Plotting a graphic output of an external function in APPDESIGNER, more specifically the uiaxes
If there is no way to activate a uiaxes programmatically, you can try to create a regular axes in app designer in the startupfcn...

6年弱 前 | 0

回答済み
Roots of a two variables equation involving a numerical integration
Assuming x and y are scalars and there is a solution, use fsolve, not an optimization algorithm. You'll need initial guesses. Th...

6年弱 前 | 1

回答済み
Accessing an element of an array using an array as its index.
Interesting...I guess your question title should be edited to "use array as subscripts into multidimensional array". I dug into ...

6年弱 前 | 0

| 採用済み

回答済み
Struct to numeric variable
At the risk of having misunderstood: new_var = [structname.fieldname] This would work if you structname is a structure array 4...

6年弱 前 | 0

回答済み
How can I specify the way components resize automatically in App Designer?
"uigridlayout" was introduced in 2018b, which may be helpful...It allows pretty sophisticated layouts, although it still seems b...

6年弱 前 | 2

回答済み
How to add the value of the 3 highest elements automatically from a vector?
like this? [~,idx] = maxk(y,3) y(idx) = y(idx) + sx Are x1 and x2 irrelevant to your question?

6年弱 前 | 0

回答済み
How to map a vector to a colourmap ?
A brute force way would be to interpolate...not sure if there's a better way x = % ... data vector indices = 0:255; xref = ...

6年弱 前 | 1

| 採用済み

回答済み
Making a square figure with pcolor
Your coordinate grid matrices x and y are not "aligned" with the axes. You can see this if you just do plot3(x,y,zeros(size(x)...

6年弱 前 | 0

回答済み
Getting Cell location of checkboxes on selection (UITable)
Is it as simple as defining a CellEditCallback?

6年弱 前 | 0

| 採用済み

回答済み
Is there an automatic way to find the centre of this circularly-symmetric pattern?
This would be not at all efficient and maybe not robust, but you could pose a minimization problem: Find the coordinates (Xc,Yc...

6年弱 前 | 0

回答済み
How can I create binEdges?
It looks like your problem is not with binning, but the fact that you have NaN's in your data. By the way if you have 2014b or ...

6年弱 前 | 0

| 採用済み

回答済み
Extracting particular x and y data points from a figure
Thinking in terms of graphs is useful but only takes you so far. The point is how to think about the data and/or functions under...

6年弱 前 | 0

| 採用済み

回答済み
Help in implementing ode45 in app designer
Static methods don't assume that the app is passed as the first argument, so remove "app" from the arg list methods (Static) ...

6年弱 前 | 0

回答済み
Validate and get exact number of characters using the regular expression
Try out_str = regexp(str, '[A-Z]+-[0-9]{2}$', 'match');

6年弱 前 | 1

| 採用済み

回答済み
How to initialize a new matrix of the same type as an existing variable?
I am not sure if this works for symbolic type, but you can initialize an array of arbitrary type by specifying the "last" elemen...

6年弱 前 | 0

回答済み
How to remove outliers based on datetime
What if you ran statistics on real or integer representations of datetime, using datenum() or something?

6年弱 前 | 0

さらに読み込む