Respondida
lsqcurvefit initial point is always a local minimum, relative first-order optimality is always = 0
I think you have a typo here: F = @(v,cur_data_wave_x) amplitude*(offset + cos(v0(1)*(cur_data_wave_x) + v0(2))); should rathe...

casi 6 años hace | 0

| aceptada

Respondida
Applying a for loop to every column in a vector
Agree with KSSV, avoid naming as "max", but in this case it is not causing your problem. Your problem is that "index" should no...

casi 6 años hace | 0

Respondida
How to choose 5 random rows from an array of 8 rows for 10 times and save the 10 results
if order doesn't matter (6,4,8,7,2 is the same as 4,6,8,7,2) doc nchoosek if order does matter (6,4,8,7,2 is different from 4,...

casi 6 años hace | 1

| aceptada

Respondida
solving a second spatial derivative using ode45
This comment is incorrect: % Create a two element vector that holds the derivative equations of u and % v % U(1) is u and U(2...

casi 6 años hace | 0

Respondida
How to save file on chosen path in app designer?
can you just simplify and use uiputfile()?

casi 6 años hace | 0

Respondida
Implicit Boundary Value Problem
Ok, so looks like what you are after is solving a DAE that has BCs at more than one boundary. Docs say it is ode15s and ode23t ...

casi 6 años hace | 0

| aceptada

Respondida
Select mxm matrix from mxn matrix and solve systems of linear equations
Does this help with first problem: https://www.mathworks.com/help/matlab/ref/nchoosek.html Second problem, maybe make tolerance...

alrededor de 6 años hace | 1

| aceptada

Respondida
Reduce time execution in a real time serial data reading
If instead of a loop, you use a timer (https://www.mathworks.com/help/matlab/matlab_prog/use-a-matlab-timer-object.html), you mi...

alrededor de 6 años hace | 0

Respondida
how to generate text file from generated output
fprintf() accepts as 1st argument a file identifier for a file opened with fopen(). fid = fopen("somefile","w") fprintf(fid,...

alrededor de 6 años hace | 0

Respondida
App designer: Enable mouse scroll to change value on slider
Take a look at the UIFigure's following properties: WindowScrollWheelFcn WindowKeyPressFcn WindowKeyReleasedFcn If you need ...

alrededor de 6 años hace | 0

| aceptada

Respondida
Trying to identify directions of overlapping lines in images, at my wit's end
Have you looked into radon transforms? You might get some "signal" at the 45 and 135 directions for the right image... If these...

alrededor de 6 años hace | 1

| aceptada

Respondida
Comparing terms in a character array
If it is truly a "character array" and you want exact matches only, you can use the findstr() command, which will return empty i...

alrededor de 6 años hace | 0

| aceptada

Respondida
Web app system command
To the question: Also, an other question just came to my mind: what's the best practice to store permanent data and access them...

alrededor de 6 años hace | 0

Respondida
Getting data from the figure in appdesigner
Here's an example where I used the data cursor's update function itself to collect the coordinates and feed directly into your a...

alrededor de 6 años hace | 2

Respondida
reshaping multi dimensional array and central difference method
Based on your example lines, you seem to have the further simplification that your delta x and delta y are uniform (in your exam...

alrededor de 6 años hace | 1

| aceptada

Respondida
Filter a table based on date (Error using tabular/dotParenReference (line 95) Unrecognized row name '01/00/0000'.)
The second way is almost right, but when you use () on testtable, you are extracting a subtable, rather than the datetime array ...

alrededor de 6 años hace | 1

| aceptada

Respondida
Using a image variable from one GUI function to another in AppDesigner
Create a property for your app class to hold the image. You appear to be using appdsigner. In appdesigner's code view, on the l...

alrededor de 6 años hace | 1

| aceptada

Respondida
Plot a curve with its derivatives
As far as I know, matlab's plot function will draw a straight line (linear interpolation) between adjacent points. For your cas...

alrededor de 6 años hace | 0

Respondida
Generate matrix of precise length and in ascending order
This seems to work, and is less wasteful RowSum = 10; NCols = 4; NRows = 70000; A = randi(floor((RowSum-2)/(NCols-2)),[NRo...

alrededor de 6 años hace | 0

Respondida
How do i create a multi-colour histogram using excel data?
I suspect your yA, yB, yC are column vectors, which you are trying to horizontally concatenate with scalars. You can probably fi...

alrededor de 6 años hace | 0

Respondida
How plot a figure like this attached figure?
It's because mesh expects z-data to be actual coordinates in z, but mesh (and surf) will accept a 4th argument for color N = 50...

alrededor de 6 años hace | 0

| aceptada

Respondida
Using trapz doesn't work
F is of size 1x1, not 1x24000

alrededor de 6 años hace | 0

Respondida
Painters renderer results in jagged edges
What happens if you set "FaceColor" to "interp" (default is "flat") on the surf object? It fixes the jagge edge for me (2017a or...

alrededor de 6 años hace | 1

| aceptada

Respondida
Solve system of boundary value problem (a singular Jacobian encountered)
If you know the problem is solvable (HW, e.g.,), then singular Jacobian usually means something is wrong with your equations or ...

alrededor de 6 años hace | 0

Respondida
determining order of accuracy
This is not a matlab question but a numerical analysis problem. Since someone already generated the results for you, it's a matt...

alrededor de 6 años hace | 0

| aceptada

Respondida
Branching a WindowButtonDown function
If you don't mind using undocumented features, I have had success using the standard axes() object instead of uiaxes(), because ...

alrededor de 6 años hace | 0

| aceptada

Respondida
Proper reading of .txt
Just use readtable()? Looks like every station will have already-aggregated results (hourly vs daily for the same station, same ...

alrededor de 6 años hace | 0

| aceptada

Respondida
ODE solver: how to integrate a system with a vector of parameters?
Are you just looking for solving the ODE as many times as you have different values of V? t = [0 400]; y = [0.004 0 0]; alpha...

alrededor de 6 años hace | 0

| aceptada

Respondida
Limiting mouseclick event to current Axes in App Designer
Cameron's idea of calculating the axes position within the figure position should work, and it is the only way with currently do...

alrededor de 6 años hace | 0

Respondida
How to access left bottom pixel in image using (0,0)?
If you just want to translate the unflipped image's row index to be translated into a different index as if you were indexing th...

alrededor de 6 años hace | 0

Cargar más