Risolto


Sum multiples

oltre 5 anni fa

Risolto


Period of a pendulum

oltre 5 anni fa

Problema


Period of a pendulum

oltre 5 anni fa | 1 | 41 risolutori

Risolto


Angular Velocity

oltre 5 anni fa

Problema


Angular Velocity

oltre 5 anni fa | 1 | 53 risolutori

Risolto


Vector parallel to plane?
Given the coefficients of the equation which defines a plane as follows: ax+by+cz=d, return a boolean indicating whether the 2n...

oltre 5 anni fa

Risolto


Area of Cylindrical Shell

oltre 5 anni fa

Problema


Area of Cylindrical Shell

oltre 5 anni fa | 1 | 31 risolutori

Risolto


Volume of Cylindrical Shell

oltre 5 anni fa

Problema


Volume of Cylindrical Shell

oltre 5 anni fa | 2 | 70 risolutori

Risolto


Polygon in a unit circle

oltre 5 anni fa

Risolto


Prime Ladders
A <http://en.wikipedia.org/wiki/Word_ladder word ladder> transforms one word to another by means of single-letter mutations. So ...

oltre 5 anni fa

Risolto


Twin Primes
Twin primes are pairs of primes that are immediately next to each other (difference of two). The lesser of twin primes are 3, 5,...

oltre 5 anni fa

Risolto


Prime factor digits
Consider the following number system. Calculate the prime factorization for each number n, then represent the prime factors in a...

oltre 5 anni fa

Risolto


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

oltre 5 anni fa

Risposto
solve large sparse jacobian matrix (with an example)
I assume that the Jacobian matrix is needed as a part of implementing Newton's method to solve system of non-linear equations. F...

oltre 5 anni fa | 0

| accettato

Risposto
Matlab function solve number pattern
The following code listing should do it (ignore the zeros in the output): cnt=0; for i=1:5 for j=1:i cnt=cnt+1; ...

oltre 5 anni fa | 0

Risposto
symbolic system of equations matlab
You might want to check out the information in the following link https://www.mathworks.com/help/symbolic/solve-a-system-of-alge...

oltre 5 anni fa | 0

Risposto
Multiplication between matrices with different dimensions
Your loop is in terms of "w"; however, in the loop "w" is not used at all. Shouldn't "i" be "w"? The pseudoinverse matrix can b...

oltre 5 anni fa | 0

Risposto
Newton's Optimization Method
The following link provides information about Hessian Matrix for a scalar function: https://www.mathworks.com/help/symbolic/hess...

oltre 5 anni fa | 0

Risolto


Is it an Armstrong number?
An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself. Fo...

oltre 5 anni fa

Risolto


Which quadrant?
Given a complex number, output quadrant 'I' 'II' 'III' or 'IV' | II | I | ...

oltre 5 anni fa

Risolto


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

oltre 5 anni fa

Risolto


Spot the First Occurrence of 5
This problem series invites you to solve two simple problems related to the integer NUMBER FIVE, in order to celebrate <https://...

oltre 5 anni fa

Risposto
Plotting a graph on MATLAB
In order to see more "dots", you need to add "hold on" on the line after plot. However, since you want to plot it against the nu...

oltre 5 anni fa | 0

Risposto
Add title to subplot (a), (b), (c) with already existing titles for parameters.
You might want to take a look at this posting: https://www.mathworks.com/matlabcentral/fileexchange/85453-subplotlabel/?s_tid=ml...

oltre 5 anni fa | 0

| accettato

Risposto
Add title to subplot (a), (b), (c) with already existing titles for parameters.
You probably could add the "(a)" (or b, c, d, e, or f) before specifying the beta_e and t_f in the title section.

oltre 5 anni fa | 0

Risposto
for loop issue not all answer printing out
Hi Anastasia, The problem is you did not store the results as a vector; therefore, when you printed out the table, only the las...

oltre 5 anni fa | 0

| accettato

Risposto
Inverse matrix with for loop
The way you prepare the cofactor is okay. You want to define your "k=transpose(c)" outside of the loop. The other thing that you...

oltre 5 anni fa | 0

Carica altro