Respondida
how to make curved arrow
There are a number of submissions on the File Exchange that helps you with this: circular-arrow-around-vector, circular_arrow, ...

alrededor de 3 años hace | 0

Respondida
How to get the numerical rank of the matrix in matlab?
If you can afford it you might consider looking at the singular vaules that you obtain from the svd of your A-matrix. That will ...

alrededor de 3 años hace | 0

| aceptada

Respondida
Is there a way to export the results of PDE's solution to the gradient?Or the gradient can be calculated from the exported triangular node result?
You should have access to the pdegrad-function that should handle your case. Or if that doesn't suit your particular need some o...

alrededor de 3 años hace | 1

| aceptada

Respondida
Summing and multiplying matrices of different size
Check that you get what you expect from each product and term separately. Then figure out what you should do to fix your discrep...

alrededor de 3 años hace | 0

| aceptada

Respondida
Unexpected phase delay via cross-correlation ? Method issue or bad data?
The phase-jump is just the branch-cut of angle (or atan2). As a measure of phase-shift between 2 harmonic signals it is equivale...

alrededor de 3 años hace | 0

Respondida
How do I plot a Poincare plot for a non-autonomous ODE's?
This sound like a perfect example of when one should use the events capabilities of the ODE-solvers. If you look at the code of ...

alrededor de 3 años hace | 1

| aceptada

Respondida
How to get average of data using different time range?
QD-suggestion (from someone too lazy/stupid/old/stubborn to learn to use arrayfun): Temperature = randi([-20 40], 24*365, 1); %...

alrededor de 3 años hace | 0

| aceptada

Respondida
Parse 1 large column of uneven data into an array of columns by nth rows.
If your file contains an equal number of samples for every "loop" and the files contains data from full "loops". Then something ...

alrededor de 3 años hace | 0

Respondida
Grid colormap with colorized circles
Something like this shouldn't be too complicated to cook up. Perhaps this is a start: function h = cwheel(x0,y0,phi0,r,nspokes)...

alrededor de 3 años hace | 1

| aceptada

Respondida
Reconstructing a surface from mesh points and function values (from COMSOL)
Are you sure that you need to use scatteredInterpolant at all? The points in the first plot seem to be on a regular grid. If tha...

alrededor de 3 años hace | 0

Respondida
Unable to find explicit solution
This looks like an attempt to derive and solve equations of motion with Euler-Lagrange equations. If that's the case there are t...

alrededor de 3 años hace | 0

| aceptada

Respondida
Unable to understand how to use the function given on the site below
files with the extension .gz are typically compressed with gzip, that use the Lempel-Ziv coding. The most effective way to handl...

alrededor de 3 años hace | 0

Respondida
How to implement this kind of coding ?
You while-loop will continue as long as the test-condition is true. You want to continue "a couple" of iterations after your des...

alrededor de 3 años hace | 0

Respondida
Converting multiple lines into separate equations from jpeg?
In similar situations I typically separate the problem into two steps, first extracting the curves, then fit parameters for equa...

alrededor de 3 años hace | 1

Respondida
How can I transform this curved wall to a flat wall without any distortions in the image? Is there any code available for it?
Sure thing. First assume that all bricks are flat bricks of exactly the same size. Then identify the edges of each brick in the ...

alrededor de 3 años hace | 0

Respondida
griddata vs griddedinterpolant vs scatteredInterpolant for given data
griddedinterpolant expects points on a regular grid pretty much like interp2 - so that function seems unsuitable for your case. ...

alrededor de 3 años hace | 2

Respondida
pcolor LOOP of current speed and a map of the area.
If you take care of the handle you get from pcolor you should be able to do something like this: H = pcolor(...) % Initial pl...

alrededor de 3 años hace | 0

| aceptada

Respondida
Optimise vertical position of nodes for shortest sum of paths
If this is a one-off calculation just brute-force search shouldn't be too bad, the y-position of the nodes should be within a sm...

más de 3 años hace | 1

Respondida
Installation on Ubuntu 22.04 LTS finished but there is no Matlab
To me this sounds like you forgot to create a link to the executable from a directory on your path. Here's how I check where I h...

más de 3 años hace | 1

| aceptada

Respondida
Diffraction pattern of plane wave through Circular Aperture
Your first problem is surely that all your variables are 1-D arrays and it seems you still only model some kind of linear apertu...

más de 3 años hace | 0

| aceptada

Respondida
Remove specific contours or make them invisible
The easiest way is to continue with the algorithm where you save the level-2-contours with a level one contour inside. Then you ...

más de 3 años hace | 0

| aceptada

Respondida
Find two contours at different levels around the same peak
You could (QD algorithming-from-the-hip) use the contour-coordinates in c1 and c2. Typically I find it easiest to break them con...

más de 3 años hace | 0

| aceptada

Respondida
How to set the name with num2str in for loop?
Perhaps it is as simple as: for k = 1:1000 % assign the content of the file directly to variable A: A = load(['cp_',n...

más de 3 años hace | 0

| aceptada

Respondida
Errorbar plot in colormap
You might get away with putting the errorbar-call in a loop. Perhaps something like this: figure(); clf box on hold on cmp ...

más de 3 años hace | 0

| aceptada

Respondida
What is the Fourier Series Coefficient of F=exp(sin(x))?
Might I be so bold as to suggest (physicist writing about calculus here...) that this task ought to have some clever analytical ...

más de 3 años hace | 0

Respondida
How to use ode45 efficiently on a large input vector
If the ODE-system you're trying to solve is something like a set of independend equations of motion that only couple "pairwise" ...

más de 3 años hace | 1

Respondida
for loop, in irregular numbers clusters?
You will have these lists of "todos" and "not-todos" from somewhere outside, since, as you write, you can't type down all the nu...

más de 3 años hace | 0

| aceptada

Respondida
How can I find dip direction and a dip of a plane with known normal vectors?
Some corrections you might consider are: load('artificial_slope.txt') %loading data % defining input values based of input txt...

más de 3 años hace | 0

Respondida
Automatically define anonymous functions.
You can solve this problem using matlabFunction to generate a function-handle: C=[-1,1,1+1/4*i,-1+1/4*i]; syms x; f=@(x) x.^2...

más de 3 años hace | 0

| aceptada

Respondida
Multiple Plots in One Iterative Script
If you want all the points for each iteration in the 2 figures, then you will have to insert a hold on after each plotting comma...

más de 3 años hace | 0

Cargar más