Gelöst


Sum multiples

mehr als 5 Jahre vor

Gelöst


Period of a pendulum

mehr als 5 Jahre vor

Problem


Period of a pendulum

mehr als 5 Jahre vor | 1 | 40 Lösungsvorschläge

Gelöst


Angular Velocity

mehr als 5 Jahre vor

Problem


Angular Velocity

mehr als 5 Jahre vor | 1 | 52 Lösungsvorschläge

Gelöst


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...

mehr als 5 Jahre vor

Gelöst


Area of Cylindrical Shell

mehr als 5 Jahre vor

Problem


Area of Cylindrical Shell

mehr als 5 Jahre vor | 1 | 30 Lösungsvorschläge

Gelöst


Volume of Cylindrical Shell

mehr als 5 Jahre vor

Problem


Volume of Cylindrical Shell

mehr als 5 Jahre vor | 2 | 69 Lösungsvorschläge

Gelöst


Polygon in a unit circle

mehr als 5 Jahre vor

Gelöst


Lateral Area of a Right Rectangular Pyramid

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


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,...

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


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...

mehr als 5 Jahre vor

Beantwortet
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...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
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; ...

mehr als 5 Jahre vor | 0

Beantwortet
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...

mehr als 5 Jahre vor | 0

Beantwortet
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...

mehr als 5 Jahre vor | 0

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

mehr als 5 Jahre vor | 0

Gelöst


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...

mehr als 5 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


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...

mehr als 5 Jahre vor

Gelöst


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://...

mehr als 5 Jahre vor

Beantwortet
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...

mehr als 5 Jahre vor | 0

Beantwortet
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...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
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.

mehr als 5 Jahre vor | 0

Beantwortet
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...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
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...

mehr als 5 Jahre vor | 0

Mehr laden