Answered
Function returning matrix instead of vector
f=@(xf,xdata)xf(1)*(xf(4)+((xf(2)-xdata)/(xf(3)/2))).^2./(1+((xf(2)-xdata)/(xf(3)/2)).^2)

4 years ago | 0

Answered
Missing inputs to distance function
First you need to put you trajectory of the directory, in my case I put this path(path,['/Users/rafaelhernandezwalls/Downloads/...

4 years ago | 0

Answered
Plotting with nested for loops
syms y t=[0 pi 2*pi]; a=[5 10]; for k=1:length(a) for j=1:length(t) f=a(k)*sin(t(j)*y); figure ...

4 years ago | 0

Answered
Plot solutions to a multi variable system: x + 2y + 3z = 4
if using mesh, and plot3 [y,z]=meshgrid(-4:.1:4,-4:.1:4); x=4-3*z-2*y; mesh(y,z,x) plot3(x,y,z,'o');

4 years ago | 1

| accepted

Solved


Binary code (array)
Write a function which calculates the binary code of a number 'n' and gives the result as an array(vector). Example: Inpu...

4 years ago

Answered
How do I get a loop to return all the values that I am looking for at one time?
e=0:200:11000; i=1:length(e) Re=6.37e6; g0=9.80665; g=g0*((Re^2)./((e(i)+Re).^2))

4 years ago | 1

Solved


Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
If _p_ is the perimeter of a right angle triangle with integral length sides, { _a_, _b_, _c_ }, there are exactly three solutio...

4 years ago

Solved


Mid-term report
You just got your mid-term report, but it's full of ones and twos :(. So before you give it to your parents, you change it, in o...

4 years ago

Solved


Square
X is a number, write a code, where Y should be the square of X.

4 years ago

Solved


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

4 years ago

Answered
Which method is MATLAB use in poly2 to do a curve fitting?
% -- FT is a string or a FITTYPE specifying the model to fit. % % If FT is a string, then it may be: % % FITTYPE ...

4 years ago | 0

Answered
how can I give each subplot a different title?
figure conRR=linspace(1,100,100); conRR(:,2)=sin(conRR(:,1)); conRR(:,3)=sin(conRR(:,1)); conRR(:,4)=sin(conRR(:,1)); conRR...

4 years ago | 0

Solved


Find MPG of Lightest Cars
The file |cars.mat| contains a table named |cars| with variables |Model|, |MPG|, |Horsepower|, |Weight|, and |Acceleration| for ...

4 years ago

Solved


Pad zero between every adjacent values of the vector.
you are given a vector x. you have to make an output vector y with zeros padded between every adjacent values of x. e.g x: ...

4 years ago

Solved


Times 10
Try out this test problem first. Given the variable x as your input, multiply it by ten and put the result in y. Examples:...

4 years ago

Solved


Find the mean of a 2-D matrix after excluding elements of specified sub-matrix
You need to find the mean of a 2-D matrix after excluding elements which form an inner sub-matrix. e.g. If the input 2-D matrix ...

4 years ago

Solved


Perimeter of a square!
Calculate the circumference of the square whose side is n

4 years ago

Solved


Find my daddy long leg (No 's')
Given the ratio of the two legs (longer / shorter), and the hypotenuse length, find the value of the bigger leg.

4 years ago

Solved


Get the area of ​​the square.
Four circles are inscribed in the square ABCD. The perimeter of each circle is *aπ*. <<http://imgfz.com/i/UzgCJut.png>> Gi...

4 years ago

Solved


Spiral Out - 01
Create a spiral matrix ( clock-wise direction ) of size n. Try to do that without using the built-in function.

4 years ago

Solved


Compute the missing quantity among P, V, T for an ideal gas
Consider 100 mol of helium gas at a certain pressure (P), volume (V), and temperature (T). Assuming that the ideal gas law appli...

4 years ago

Solved


Equilateral Triangle
The length of one side of the equilateral triangle is a. Calculate the area of ​​the equilateral triangle.

4 years ago

Solved


Newton's Motion Law
F is force, m is mass, and a is acceleration. Calculate the force for an object.

4 years ago

Solved


Momentum of an Object
P is momentum, m is mass, and v is velocity. Calculate the momentum for an object.

4 years ago

Solved


Matrix problem for beginners
Make a matrix [0,0,0;1,1,1;2,2,2]. X=[0,1,2]

4 years ago

Solved


Matrix for beginners
Multiply x and y elemwise.

4 years ago

Solved


Divide pi
Divide pi by x!

4 years ago

Solved


Multiply pi
Multiply pi with x!

4 years ago

Solved


La derivada numérica
El concepto de pendiente o inclinación de una función recta es muy intuitivo para cualquier persona. Desde el punto de vista mat...

4 years ago

Solved


¿Es una función exponencial?
Crea una función que permita analizar si los datos dados por el usuario ( *x* e *y*) se relacionan por medio de una función expo...

4 years ago

Load more