photo

Mitchell Thurston


Last seen: 11 mois il y a Actif depuis 2020

Followers: 0   Following: 0

Statistiques

All
MATLAB Answers

0 Questions
13 Réponses

Cody

0 Problèmes
73 Solutions

RANG
2 382
of 300 392

RÉPUTATION
26

CONTRIBUTIONS
0 Questions
13 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
7

RANG
 of 20 934

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
7 154
of 168 373

CONTRIBUTIONS
0 Problèmes
73 Solutions

SCORE
985

NOMBRE DE BADGES
5

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 2
  • Community Group Solver
  • Introduction to MATLAB Master
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

A résolu


Volume Pillar
Calculate the volume of a pillar with radius l and heigth ar.

environ un an il y a

A résolu


Convert radians to degrees
Given input in radians, output to degrees

environ un an il y a

A résolu


Perimeter of a semicircle
Given the diameter d, find the perimeter of a semicircle

environ un an il y a

A résolu


Given a square and a circle, please decide whether the square covers more area.
You know the side of a square and the diameter of a circle, please decide whether the square covers more area.

environ un an il y a

A résolu


Pi Digit Probability
Assume that the next digit of pi constant is determined by the historical digit distribution. What is the probability of next di...

environ un an il y a

A résolu


Approximation of Pi
Pi (divided by 4) can be approximated by the following infinite series: pi/4 = 1 - 1/3 + 1/5 - 1/7 + ... For a given number of...

environ un an il y a

A résolu


radius of a spherical planet
You just measured its surface area, that is the input.

environ un an il y a

A résolu


Pi Estimate 1
Estimate Pi as described in the following link: <http://www.people.virginia.edu/~teh1m/cody/Pi_estimation1.pdf>

environ un an il y a

A résolu


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

environ un an il y a

A résolu


Pizza!
Given a circular pizza with radius z and thickness a, return the pizza's volume. [ z is first input argument.] Non-scored bonus...

environ un an il y a

Réponse apportée
How can I insert a variable into a plot legend, with a special character following the variable?
You can use sprintf formatting to get the variable inserted. You can also set the legend interpreter for latex formatting to get...

environ un an il y a | 0

Réponse apportée
I can't see the cosine graph. How do I generate the cosine graph using 2^10 samples?
You should be able to just get rid of the for loop, ydata = 5 + 10*cos(2*pi*time+pi/6)

plus d'un an il y a | 0

Réponse apportée
I made a folder with 12 .fig files, I am attempting to convert these to jpeg using a loop.
You can do it by running this code while inside the Figures directory files = ls; % get filenames of everything in that directo...

plus d'un an il y a | 0

Réponse apportée
Basic FFT Question: What range to sample the function in.
When you perform an FFT, it is assumed that the original signal is on a timespan from [0 to 2*pi]. When you pass these signals a...

plus d'un an il y a | 0

A résolu


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

environ 2 ans il y a

A résolu


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

environ 2 ans il y a

A résolu


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

environ 2 ans il y a

A résolu


Create Volcano (or Atoll) martix. It is an extension of Bullseye matrix problem.
For example, if n=2 (maximum value), the output matrix should be [1 1 1 1 1; 1 2 2 2 1; 1 2 1 2 1; 1 2 2 2 1; 1 1 ...

environ 2 ans il y a

A résolu


Create a Multiplication table matrix...
Create a product table in this format: P = [ 1 2 3 4 5; 2 4 6 8 10; 3 6 9 12 15; 4 8 12 1...

environ 2 ans il y a

A résolu


Special matrix
Make a square matrix with this shape. For n=4 M = 1 1 0 0 1 0 1 0 0 1 0 ...

environ 2 ans il y a

A résolu


Spot the rectangle
This problem is related to the 17x17 challenge. Given a matrix filled with ones and zeros, determine whether or not any rectangl...

plus de 2 ans il y a

A résolu


Pascal's Matrix
Given an integer n &ge; 0, generate the ( _n_+1) &times; ( _n_+1) lower triangular <http://en.wikipedia.org/wiki/Pascal_matrix P...

plus de 2 ans il y a

Réponse apportée
How can I obtain the derivative of a vector? Displacement-Velocity but what about acceleration? I am using the space state formulation
(Altered the code provided so that it ran properly) clc; %command window clear;%clear workspace close all; % close figures ...

presque 4 ans il y a | 1

| A accepté

Réponse apportée
trouble coding for ODE's
this is definintely an inefficient way of doing it, but this accomplishes everything syms dx(t) x(t) m c k w % these are the te...

presque 4 ans il y a | 1

Réponse apportée
How can I 'hold off' specific Field vector using "quiver" into a updated "drawnown" inside a plot?
I'm assuming you're calling quiver in the "quiver(x,y,u,v)" style, since you can't use 1 argument % After plot 1 is made hol...

presque 4 ans il y a | 1

Réponse apportée
How to add regression line equation to a plot?
the most simple way I know of would be to add it to the legend you can add this to the last line of your code legend({'Data Po...

presque 4 ans il y a | 1

A résolu


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

presque 4 ans il y a

A résolu


Rotate a Matrix by 90 degrees
Rotate a Matrix by 90 degrees Example: If the input is: X = 1 2 3 4 5 6 7 8 9 ...

presque 4 ans il y a

A résolu


Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...

presque 4 ans il y a

A résolu


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

presque 4 ans il y a

Charger plus