已回答
RCS Calculations for Phased Array System Toolbox
as you may know most approximate methods can predict RCS within few dBs of the truth. In general, such a variation is quite acce...

11 years 前 | 0

已回答
Simulink: High Freq. noise in sim. results
hi.i draw your model in simulink and also modeled the system in matlab itself. the STEP()command in matlab obviously shows that...

11 years 前 | 0

| 已接受

已回答
How do I add a matrix to another matrix with different sizes?
C=B; for i=1:length(B) for j=1:length(A) if A(j,1:2)==B(i,1:2) C(i,:)=A(j,:) end end ...

11 years 前 | 0

已回答
How do I add a matrix to another matrix with different sizes?
if you want to add matrix A to first raw's of B you can use the following code: C=zeros(size(B)); C(1:size(A,1),:)=A; ...

11 years 前 | 0

已回答
fitting sum of gaussians into a data set (100 rows and 1 column)
you can use the function "lsqcurvefit".first define Gaussian formula in a function mfile.then the lsqcurvefit function gives the...

11 years 前 | 0

| 已接受

已回答
simulink adaptive notch filter
designing adaptive filters and none adaptive filters are two separate topics.you have to read more about adaptive systems. (here...

11 years 前 | 0

已回答
how to use technique to save value in final matrix - matlab coding?
with a for loop you can write following code: for kk=1:Nmod {all your code goes here} Ai(kk)=An; ...

11 years 前 | 0

已回答
How to interpolate to the nearest value
here is the answer to your question. :) t = 1900:10:1990; >> p = [75.995 91.972 105.711 123.203 131.669... 150.697 ...

11 years 前 | 0

已回答
Getting a warning while finding an inverse
your matrix is singular.it means that it's determinant is close to zero or actually zero.or even perhaps if you are sure that it...

11 years 前 | 0

已回答
Adding variables from function to workplace - Output not working
hi, well,we know that functions don't share variables with workspace,if you want to use variables in several functions you can ...

11 years 前 | 0