Statistik
RANG
207.350
of 300.851
REPUTATION
0
ANTWORTZUSTIMMUNG
40.0%
ERHALTENE STIMMEN
0
RANG
of 21.094
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 171.294
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Discussions
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
raised cosine filter frequency domain
I am coding raised cosine filter in frequency domain directly. This link shows coding raised cosine filter in time domain dir...
mehr als 8 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How can I gernerate negative value in Vector
I want to making a vactor. The value of the vector is {-L, -L+1, ..., 0,... L} I used randperm but this fuction only make ...
mehr als 8 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How can I calculate MSE when different length of vector?
Tk = 2.34, 5.342 h = 0.5, 1 , 1.5 How can I calculate MSE when different length of vector? mean((h-Tk).^2) this code do...
etwa 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to plus between indices?
Vec = [0 -0 0 -0 0 0 0 0 1 0 0 0 -0 3 4 0 -0 0 0] First step find non-zero value. [Vecindex] = find(abs(Vec)>0) V...
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How can I find non-zero without Empty matrix: 1-by-0 in my code.
k=5; Tk=(rand(1,k)*64); Tk=sort(Tk); Ck=randn(1,k); h_DSseisu = h_DS * 10000; %少数点を整数化 ...
mehr als 9 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Empty matrix: 1-by-0, MSE
Hello, I have been a test of MSE. I am currently experimenting with using the Find function. I sometimes following error o...
mehr als 9 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How can I modify vector indexs and values.
I try to modify vector indexs and values. h_DS is a vector that has 64 length and value(almost 0, another has value: 0 0 0 0 ...
fast 10 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How can I code vector index plus
n is an index of vector. C is a vector. How can I code that? Cn + C(n+1) C(n+1) is next(+1) index of n.
fast 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How can I find index and matched value in vector
Vector = [ -0.0000 -0.0000 0.0000 0.0000 0.0000 -0.0000 0.0000 0.0000 -0.0000 0.0000 ...
fast 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How does MATLAB code square wave fiter?
%Transmitted signal is iidx iidx = zeros(N0,1); % N0 is the number of code. iidx = transpose(round(rand(1,N0))*2-1); %iidx...
fast 10 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How can I make vector by value and index?
Hello, I try to make vector by value and index. Please see my code. Tk=(rand(1,k)*N0); % Tk is index of h, k is index nu...
fast 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How can I code matrix of channel with delay and dopper shift?
<</matlabcentral/answers/uploaded_files/42379/channel.png>> H is channel, L is maixmum delay and M is maixmum dopper shift L...
etwa 10 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How can I code transmitted signal using by a raised cosine filter?
A transmitted signal is defined by <</matlabcentral/answers/uploaded_files/38640/signal.png>> , where tau is a period ...
etwa 10 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
for to parfor, Error: The variable h in a parfor cannot be classified.
L=128 K=10 h = zeros(L, 1); r = randperm(L, K); parfor i = 1:K, h(r(i)) = randn(1,1); end for to parf...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Matrix[1,1,1,1;-1,-1,-1,-1;1,1,1,1] to vector[1,1,1,1,-1,-1,-1,-1,1,1,1,1]
Matrix[1,1,1,1;-1,-1,-1,-1;1,1,1,1] to vector[1,1,1,1,-1,-1,-1,-1,1,1,1,1] How can I code?
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortFrage
X=(x0,x1,....,Xn0-1) ==> Xhat=(x0,x0,x0,x0, x1,x1,x1,x1, ........ ,Xn0-1,Xn0-1,Xn0-1,Xn0-1), How can I copy like this in vector?
X=(x0,x1,....,Xn0-1) ==> Xhat=(x0,x0,x0,x0, x1,x1,x1,x1, ........ ,Xn0-1,Xn0-1,Xn0-1,Xn0-1) How can I copy like in vector? ...
mehr als 10 Jahre vor | 1 Antwort | 0
1
AntwortHow can I code diagonal matrix
Wm = zeros(N0tilda,N0tilda); N0tilda = 0:N0tilda-1; WN0 = exp(-i*2*pi/N0); Wm = diag(WN0.^N0tilda);
mehr als 10 Jahre vor | 0
Frage
How can I code X matrix ?
I am studing "Bajwa et al.: Compressed Channel Sensing: A New Approach to Estimating Sparse Multipath Channels." I want to make ...
mehr als 10 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How can I code diagonal matrix
Wm is an N0tilda x N0tilda diagonal matrix ---Matlab code--- Wm = zeros(N0tilda,N0tilda); ---------------------------- ...
mehr als 10 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How can I make spread spectrum signaling?
I studing "Bajwa et al.: Compressed Channel Sensing: A New Approach to Estimating Sparse Multipath Channels." I want to make mat...
mehr als 10 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
How can I make spreading code?
I studing "Bajwa et al.: Compressed Channel Sensing: A New Approach to Estimating Sparse Multipath Channels." I want to make ma...
mehr als 10 Jahre vor | 1 Antwort | 0
