Réponse apportée
Problems building a plot
In general the error you are getting is telling you that if you want to plot one variable against another they both have to have...

plus de 6 ans il y a | 0

Réponse apportée
Index Vector Operation in Matlab
Actually A(b) with the example you have given will return [13 14 2 14 10]. That is the elements are taken from the first column ...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Polynomial to the power of polynomial.
You should be able to use the MATLAB function fzero for this purpose. You will have call it repeatedly (maybe in a loop) with a ...

plus de 6 ans il y a | 0

Réponse apportée
fopen with string vector
Your first problem is that dir returns a structure. If you want the name of, the ith file it returns you should use Name = S(j)...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Using a Subroutine to Create a Plot
I think that what you describe could be implemented with a simple loop. So make a vector of radii that you want to evaluate, set...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
nonlinear fit of experimental data
In your example you find a fit to a function of one variable, and are somehow looking for a combination of terms to form that on...

plus de 6 ans il y a | 0

Réponse apportée
Using find to check the contents of files within a struct
It looks like your difficulty is coming from the argument that you are providing to the find command. If you look carefully at ...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Taking middle 4 values of n size array
You could use something like, for an array A n = length(A(:)) % : treats as column even if this is actually a multidimensional ...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Program for Impulsive Difference Equations
One way to approach this is to transform your difference equation in the single variable y to a system of two difference equatio...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
How should i go about solving a set of ODEs for a set of data points? I would like to automate it as much as possible.
Please see my earlier comments. From the behavior you describe, it looks like Sol1 and SolRequired are returned empty from wha...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How should i go about solving a set of ODEs for a set of data points? I would like to automate it as much as possible.
I am not clear on the details of your implementation. It would take some time to go through it all line by line. In case it is ...

plus de 6 ans il y a | 1

Réponse apportée
How to differentiate elements in a matrix by each other
Say your matrix is called M, you could do something like % find incremental change from one row to the next delta = diff(M); ...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
How to organize a table?
You could do this with a simple loop I'll assume your table is called mytable % find maximum possible value for cell type cell...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
concatenating and comparing two datsets
Assuming that the 9th column of both data sets is the same, I think you can do this just with an innerjoin tbl1 = readtable('da...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
I want to add a line of best fit to my plot using the polyfit function.
You can do something like this p = polyfit(xL(A),anglex,1); anglexFit = polyval(p,xL(A)); plot(xL(A),anglex,'ko',xL(A),anglex...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
open loop response for nonlinear system
Basically you need to define the set of ODE's (ordinary differential equations) that define your system and then solve them. MAT...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to implement a frequency dependent analysis?
You are quite close with your code. I think you just need to use the semilogx with a few annotations as shown below %Schirmdämp...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How do I plot a 3D mesh from multiple csv files?
The problem apparently is with loading the files, nothing to do with plotting 3d mesh, or at least it didn't get far enough to h...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Insert missing date and corresponding values in a matrix?
I'm not completely clear on what it is you are trying to do, but I think you want to plot the values in the third column against...

plus de 6 ans il y a | 0

Réponse apportée
how to call nested structure and cell array?
I'm not sure exactly what you mean by "call the first column of the data.timepoints" If you wanted to assign some other variabl...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How can I graph arrays with negative exponentials? It keeps saying that there is an error but I can not figure out what is wrong
You need to put a multiplication operator between the constants and the exponents f(x)=[6.02105*exp(-6,) 1.514423*exp(-3), 6.64...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Extrapolation of data points
You could first find the equation of a straight line that goes through the last n points of one curve, and then similarly find a...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Creating a Matrix from Distances between Vectors
So from your description you actually want to find and store the vectors that go from each point in the first matix to each poin...

plus de 6 ans il y a | 0

Réponse apportée
Rotation of curve question
I think you also have a sign error in your formula. Xr = (x-XXc)*cos(delta) + (yp-YYc)*sin(delta) + XXc; % should be Xr = (...

plus de 6 ans il y a | 0

Question


How to vectorize assignment from array of structures to cell array
I am looking for a way to make an assignment from an array of structures to a cell array without using a loop. Here is an examp...

plus de 6 ans il y a | 1 réponse | 0

1

réponse

Réponse apportée
Help with discrete convolution
This is a good reference that explains discrete convolution specifically using MATLABhttps://www.ling.upenn.edu/courses/cogs501/...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
could anyone help me to solve the issue
If I am understanding your problem correctly you could do something like this: % define matrix of value A=[0.0037 0.0036 ...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Issue with array2timetable = Row times must be datetime or duration vector with one time for each row in input timetable.
It looks like you may have the arguments reversed. The first argument should be the data (doubles) the last argument should be t...

plus de 6 ans il y a | 0

Réponse apportée
Help with discrete convolution
You need to first form two vectors, z1 and z2 where z1 hold the values of your first series, and z2 holds the values of your sec...

plus de 6 ans il y a | 0

Réponse apportée
how to use logic array
It isn't quite clear the specifics of what you want to retrieve but for example if you wanted to get the row in frame 1 that mat...

plus de 6 ans il y a | 1

| A accepté

Charger plus