답변 있음 How to add 2 or 3 tables in column wise ?
% create four matrices of size 50*1
A = zeros(50,1);
B = ones(50,1);
C = zeros(50,1);
D = ones(50,1);
% arrange them colu...
답변 있음 Function that creates figures only?
If you only want to create plots then you can simply do it as following
clc
x = 0:pi/100:2*pi;
y = sin(x);
create_plots(x,y)...
Add particular elements of array
Let's say that k is a vector and
k = [1 1 1 1 4 1 1];
k could be anything I just assumed [1 1 1 1 4 1 1]. Let's say there is ...
Color Shift Keying Demodulation
In Visible Light Communication, Color Shift Keying Modulation is done as shown in the block diagram
The relation or equations t...
7년 초과 전 | 답변 수: 1 | 0
1
답변
질문
How to solve equations
Eq1 : x = 2*pi + 1*pj + 3*pk
Eq2 : y = 5*pi + 9*pj + 2*pk
Eq3 : 1 = pi + pj + pk
Let's say i have calculated pi,pk,pj ...
How to solve equations with more unknowns
I want to write a code to find pi,pj and pk. How to solve these equations, all x and y terms are known.
Eq1 : x=pi.xi + pj....