What does x(1,:) do in MATLAB ?

280 Ansichten (letzte 30 Tage)
JIIT Bainwala
JIIT Bainwala am 11 Mai 2012
Kommentiert: Steven Lord am 10 Jun. 2024
What does x(1,:) do in MATLAB ?
eg:
at = sqrt(Po)*exp(-0.5*(1+i*C)*(tau./t0).^(2*m))
a0 = fft(at(1,:));
what does at(1,:) do here ?
  2 Kommentare
Anil Chowdary Tummala
Anil Chowdary Tummala am 21 Apr. 2021
Q1. What does x(1,:) do in MATLAB ?
Answer : It gives the first row of matrix 'x'
Q2. what does at(1,:) do here ?
Answer : it gives the first row of FFT coefficients of matrix 'at'
Anil Chowdary Tummala
Anil Chowdary Tummala am 10 Okt. 2022
Thank you very much

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Dr. Seis
Dr. Seis am 11 Mai 2012
"a0" is the Fourier Transform of the first row of "at"
at(2,:) % gives the second row
at(3,:) % gives the third row (and so on)
at(:,1) % gives the first column (and so on)

Weitere Antworten (3)

Afissou ZONGO
Afissou ZONGO am 17 Aug. 2021
X(i*2,:) means
  1 Kommentar
Walter Roberson
Walter Roberson am 17 Aug. 2021

Take the current value of the variable i and multiply it by 2. Use the result as row indices to select entire rows of X.

The code shown does not require that i is a scalar or even a vector. It also does not require that the values in i are currently integer values, but if they are not then there is the risk that there could be an indexing error.

There are uncommon cases in which i would not necessarily have to be numeric, but you might never see that happen in practice.

Melden Sie sich an, um zu kommentieren.


Sorabh Mahajan
Sorabh Mahajan am 27 Feb. 2022
x = [x;i] meaining
  1 Kommentar
Walter Roberson
Walter Roberson am 28 Feb. 2022
[A;B] is defined as being vertcat(A, B) which in turn is defined as being the same as cat(2,A,B)
That is, [x;i] takes the existing array x, and tries to place a new row containing i at the bottom of it. With the x= assignment that becomes the new x. The effect is to add the content of i to the bottom of x.

Melden Sie sich an, um zu kommentieren.


Antonio
Antonio am 10 Jun. 2024
x(1:2,1)? meaning
  1 Kommentar
Steven Lord
Steven Lord am 10 Jun. 2024
This performs "Indexing with Element Positions". In particular, "You can also reference multiple elements at a time by specifying their indices in a vector."

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by