Respondida
beginner question :subject : For loops , while loops , index variable
This is what I would do: for k=1:length(t) if t(k)<=0 y4(k)=3*t(k)^2 + 5; else y4(k)=-3*t(k)^2 + 5; ...

casi 13 años hace | 0

Respondida
Using the 'diff' function inside the 'find' function.
Her is my guess. Why don´t you just store k in a vector? I mean something like aux= zeros(length(d2x)); aux2=1; for k...

casi 13 años hace | 0

Respondida
How fill a part of 3D array with decreasing values?
I think you are trying to do something like this >> a=20:-2:2; >> for i=1:10 for j=1:10 X(i,j,1:10)=a(1:10); en...

casi 13 años hace | 0

| aceptada

Respondida
How I can know elements of a matrix
If you want to find if you have a 1000 in your matrix try the same thing, but change 1 for 1000 find(I==1000) Will retu...

casi 13 años hace | 0

Respondida
How I can know elements of a matrix
When you multiply the matrix by 1000 you have binary values(1 and 0 true false)no more.So I don´t know what you exactly mean by ...

casi 13 años hace | 0

Respondida
How can I open excel file in Mathlab
Use the xlsread function to read the excel values and store them in a vector, so that you can represent them using the plot comm...

casi 13 años hace | 0

Respondida
can anyone help me in finding out the location of zero crossing point of an signal whose peak is determined
Hi,if you have a signal like this c = Columns 1 through 15 0 1 2 3 4 5 6 7...

casi 13 años hace | 0

Respondida
how to analyze frequency response ?
Hi Gokul, freqz is used to find the frecuency response, once you have designed your b and a vectors. [h,w]=freqz(b,a,n) ...

casi 13 años hace | 0

Respondida
NEED ANSWERS IN NUMERICAL FORM
Try this: >> a= input('Enter First Strain Gauge readings'); b= input('Enter Second Strain Gauge readings'); c= input(...

casi 13 años hace | 1

Respondida
what is wrong when using fzero
You can use solve instead of fzero

casi 13 años hace | 0

Pregunta


Is there a way to free RAM consumed by Matlab without closing Matlab?
Hi,I am working with a program which is consuming a huge amount of RAM memory, and I would like to know if it is possible to fre...

casi 13 años hace | 5 respuestas | 1

5

respuestas

Respondida
How to pass a audio signal through a filter
This is fine at the moment. Now filter with from 0 to 4000Hz to make sure the results are different(I mean if you filter from 40...

casi 13 años hace | 0

Respondida
How to pass a audio signal through a filter
The first step is to design a filter to obtain the A and B vector coefficients.Then use the Butter function, for instance to obt...

casi 13 años hace | 1

| aceptada

Respondida
How to find the value of R ?
Is this what you mean? >> A=27; >> E=1:1:10; >> R = 0.173*(E.^3/2)*A.^1/3 R = Columns 1 through 9 ...

casi 13 años hace | 0

| aceptada

Respondida
Solving a complicated equation in matlab
I think there is nothing wrong with your code. If I do f(-0.351409329825233) the answer is ans = -3.9968e-...

casi 13 años hace | 1

| aceptada

Respondida
Finding jacobian of a matrix
The jacobian command calculates symbollically the jacobian of a given matrix. The following example can be found in the Mathw...

casi 13 años hace | 1

Respondida
problems about solve exponential function
When you execute this code in Matlab >> syms x; >> f=-10*exp(-x); >> solve(f,x) >> isempty(a) ans = ...

casi 13 años hace | 0

| aceptada

Respondida
problems about solve exponential function
In the warning message displayed by Matlab it says no solution has been found(just as it happens if the function has no roots), ...

casi 13 años hace | 0

Pregunta


cannot figure out the reason for a warning message
Hi, I am working with a piece of code, and though the code seems to work well(as the results yielded seem to be correct)Matlab s...

casi 13 años hace | 0 respuestas | 0

0

respuestas

Respondida
Find vector elements that sum up to specific number
I don´t know any specific Matlab command to adress your problem, however you can write an M-file to solve your problem. A po...

casi 13 años hace | 0

Respondida
Suggest a data structure to represent a set of geographical points
Try using multidimensional arrays. The idea is that the "third dimension" represents the index of your bidimensional latitude-lo...

casi 13 años hace | 0

Respondida
problem with imag command when evaluating symbolic expressions.
The answer is right, if you try subs((9*i*conj(x))/2 - (i*y)/2 - (9*i*x)/2 + (i*conj(y))/2 + 4),{x,y},{0,0}) or subs((9*i*conj(x...

casi 13 años hace | 0

Pregunta


problem with imag command when evaluating symbolic expressions.
Hi, when I execute the following code in Matlab syms x y; f=4*i+9*x+y; imag(f) I get the following result ans = ...

casi 13 años hace | 2 respuestas | 0

2

respuestas

Respondida
Discrete acceleration data to position
I am not sure, but theoretically ,if you have acceleration, and you want to get displacement, you have to integrate to get veloc...

casi 13 años hace | 0

| aceptada

Respondida
What will be the sampling frequency of the following time series data??
I am not sure I am understanding your question very well, but it seems you have a sample every 0.00274 units of time. You have t...

alrededor de 13 años hace | 0

| aceptada

Pregunta


How can I solve a problem with subs?
I have to substitute values in a matrix with 20 variables. I substitute variable after variable using a for loop, but in some ca...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta