Solved


Add one to a value...
add one to a value x

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Yo
Yo

4 years ago

Solved


Why doesnt she want me
Why doesnt she want me

4 years ago

Answered
arrangment matrix in special way
Z=zeros(4); d=[A;B;Z;Z;C]; D=d; for k=2:5 d=circshift(d,4,1); D=[D,d]; end

4 years ago | 0

| accepted

Solved


Basic Operation with the middle number of odd matrix
# Take an odd matrix *like* 3-by-3 # Access the *middle element* of the matrix i.e in case of 3-by-3 matrix the index of the pa...

4 years ago

Solved


Top layer of a 3D pyramid
create a 3D pyramid(x,y,z) of ones(1) and zeros(0)...where pyramid part is denoted by one....nd find the top layer(x,y) of the p...

4 years ago

Solved


cross-section of 3D pyramid
Create 3d pyramid of ones and zeros...where pyramid-part is denoted by ones and outer-part is denoted by zeros..where base is sq...

4 years ago

Solved


Height of a 3D Pyramid
If a pyramid is made with one(1). What will be the height of the pyramid of square shaped base(n*n)? where input is n.

4 years ago

Answered
Attempting to plot a function with a for loop, but nothing is working.
kilotons=input('kilotons of blast'); i=1:2:50; con = (kilotons * (1.2*10^8))./(pi*i.^2); plot(i,con); ylabel('Concentration'...

4 years ago | 2

Answered
Passing a vector (array) into a differentiated function
syms x; f = x^2 -1; Df1 = diff((f)); Df2 = diff((Df1)); y = (0:0.05:1); F= double(subs(f,x,y)); DF1= double(subs(Df1,x,y))...

4 years ago | 1

| accepted

Answered
How to store multiple variables on Matlab?
If every line is related and numbers of the same kind (floating point), then storing in a matrix can be more efficient (use inde...

4 years ago | 1

Answered
Circe center coordinates and radius from coordinades ( A, B, C )
syms h k r x1 x2 x3 y1 y2 y3 eqn1=(x1-h)^2+(y1-k)^2==r^2; eqn2=(x2-h)^2+(y2-k)^2==r^2; eqn3=(x3-h)^2+(y3-k)^2==r^2; [H,K,R]=...

4 years ago | 0

| accepted

Answered
How can I make the program count the number of decimals of an inputted amount
if you don't care about zeros entered. x=46.4500000;%if this would be valid if ~isequal(floor(x*100),x*100) 'invalid' end...

4 years ago | 0

Answered
I want to get the mean of cells in column 4 based on the column 1 value.
m=floor(yourMatrix(:,1)); M=259:374; for k=1:length(M) n(k)=mean(yourMatrix(m==M(k),4)); end

4 years ago | 0

| accepted

Answered
Reading certain columns of data bigger than a number into one array smaller into another
for i = 1:length(namelist) filename = namelist{i}; data = readmatrix(filename);%try readmatrix High = [High;data(...

4 years ago | 0

Load more