Community Profile

photo

Doddy Kastanya


Last seen: 4개월 전 2017년부터 활동

I love math and physics. Being a nuclear engineer keeps this alive.

통계

All
  • MATLAB Central Treasure Hunt Finisher
  • Knowledgeable Level 2
  • Revival Level 1
  • Famous
  • Project Euler I
  • Leader
  • Curator
  • Cody Problems in Japanese Master
  • First Answer
  • Puzzler
  • Draw Letters
  • Introduction to MATLAB Master

배지 보기

Content Feed

보기 기준

문제를 풀었습니다


Calculate Wind Chill Factor
The NWS Wind Chill Temperature (WCT) index formula for calculating the dangers from winter winds and freezing temperatures: Cal...

9개월 전

문제를 풀었습니다


Split Even Number Into Two Primes
Given an even whole number n (> 2), return a 2-element vector of primes, p, such that p(1) + p(2) = n. Fun note: technically it...

1년 초과 전

문제를 풀었습니다


Triangle Coordinates
Given a natural number n, return two -element vectors, x and y, containing the coordinates of a triangular arrangement of points...

1년 초과 전

문제를 풀었습니다


Predict Cricket Stridulation Rate from Air Temperature
Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Alma...

1년 초과 전

문제를 풀었습니다


Find Air Temperature from Cricket Stridulation Rate
Stridulation is the process that creates a cricket's “chirp” by rubbing their wings or legs. According to the Old Farmer's Alma...

1년 초과 전

문제를 풀었습니다


Is A the inverse of B?
Given a matrix A and a matrix B, is A the inverse of B? >>A=[2,4;3,5]; >>B=[-2.5,2;1.5,-1]; >>isInverse...

거의 2년 전

문제를 풀었습니다


Rotate counterclockwise a matrix 90 deg with left-bottom element
Example: Input [ 1 2 3 4 5 6 ] Output [ 3 6 2 5 1 4 ]

2년 초과 전

문제를 풀었습니다


Easy Sequences 2: Trigonometric function with integral input and output
The function 'F', defined as: , will always return an integer if the input is a natural number (in radian...

2년 초과 전

문제를 풀었습니다


letter yes yes & letter no no
Split a string into two strings, wherein the first string has all alphabetic letters and the second string has all the remaining...

거의 3년 전

문제를 풀었습니다


the fly, the train, the second train, and their Zeno's paradox
*You have heard this one*: A train leaves station _A_ and travels with constant velocity _v1_. A second train leaves station _B_...

거의 3년 전

답변 있음
Filling missing points in a grid
You could try to add the following at the end of your code: hold on text(7,8,'X','color','r') If there are other points, then...

거의 3년 전 | 0

| 수락됨

답변 있음
Need Help Coding a Gaussian Problem
You might not be using the correct data for this. For example, in your implementation x_i and x_j are simply numbers. Shouldn't ...

거의 3년 전 | 0

답변 있음
How can I find the median of each row in a matrix?
Try this (assuming that your matrix is called A): for i=1:150 x=sort(A(i,:)); median_value(i)=0.5*(x(2)+x(3)); end You will...

거의 3년 전 | 0

문제를 풀었습니다


Calculate Engine Power
Calculate Engine Power (P) in kW given the values of Torque(M) in Nm and Engine Speed(n) in rpm

거의 3년 전

문제를 풀었습니다


Electrical Diode Current Calculation
In engineering, there is not always a single equation that describes a phenomenon accurately enough to be applied in all instanc...

거의 3년 전

문제를 풀었습니다


An Ohm's Law Calculator
*BACKGROUND / MOTIVATION:* Many important observations in math and science can be described by short, but powerful, equations...

거의 3년 전

문제를 풀었습니다


Create an anti-identity matrix
Create an anti-identity matrix of given dimension. Examples n = 2 A = [0 1; 1 0] n = 3 A = [0 0 1; 0 1 0; 1 0 0...

거의 3년 전

문제를 풀었습니다


determine the sum of the squares
if x = 4, the solution will be: y = 1^2+2^2+3^2+4^2=1+4+9+16 = 30.

거의 3년 전

문제를 풀었습니다


sum all digits
input = 123456789, output = 1+2+3+4+5+6+7+8+9 = 45

거의 3년 전

문제를 풀었습니다


Convert from Base 10 to base 5
Convert the input number from base 10 into base 5: for example: if a(in base 10)= 5 then a(in base 5)= 10

거의 3년 전

문제를 풀었습니다


Tridiagonal matrix
Given vectors u and v, make a tri-diagonal symmetric matrix such that u is in the main diagonal and v is below and above diagona...

거의 3년 전

문제를 풀었습니다


Number Puzzle - 119

거의 3년 전

문제


Number Puzzle - 119

거의 3년 전 | 1 | 솔버 수: 16

문제를 풀었습니다


Number Puzzle - 118

거의 3년 전

문제


Number Puzzle - 118

거의 3년 전 | 1 | 솔버 수: 17

문제를 풀었습니다


Draw a '4' in a zero matrix!

거의 3년 전

문제를 풀었습니다


Draw a '6' in a zero matrix!

거의 3년 전

문제를 풀었습니다


Draw a '9' in a zero matrix!

거의 3년 전

문제를 풀었습니다


Draw a '7' in a zero matrix!

거의 3년 전

문제를 풀었습니다


Find x rows where the sum of the numbers is the maximum

거의 3년 전

더 보기