Answered Help in doing Matrix Multiplication
Mahesh you can do it using symbolic expression in MATLAB as following:
A = [93 65 41 47 31 30 37 30 31 31 34 32 30 68 2 68 ...
12 years ago | 0
Answered Legend line are the same always
For matrices you can do like this
a = rand(10);
b = rand(20);
c = rand(30);
plot(a), hold on
plot(b), hold on
plot(...
Answered Display effects of sinus wave
You can see the frequecy is very high. So you need to use some smaller value
time=0:1/8000:5;
f=2;
figure(300)
Voltag...
12 years ago | 0
Question
Iterative Fourier Transform Algorithm
Hi does anybody have a working MATLAB code for Iterative Fourier Transform Algorithm (IFTA) for design of beam splitting diffrac...