Community Profile

photo

Noah Prisament

MathWorks

Last seen: 3일 전 2022년부터 활동

Software engineer working at MathWorks with a passion for theory and algorithms.

Programming Languages:
Python, C++, C, Java, C#, Javascript, R, MATLAB, SQL, HTML, CSS, Objective-C
Spoken Languages:
English
Pronouns:
He/him
Professional Interests:
Graph and Network Algorithms, Optimization, Quantum Computing, Parallel Computing, Audio Processing Algorithm Design

통계

All
  • Knowledgeable Level 1
  • First Answer
  • Speed Demon
  • Leader
  • Creator
  • Draw Letters
  • Commenter
  • Project Euler I
  • Promoter
  • Community Group Solver
  • Solver

배지 보기

Content Feed

보기 기준

답변 있음
Add a red line on the graph
For future reference, code is more readable if you format it in a "code block" in the question editor. Also please give a more d...

29일 전 | 0

답변 있음
How to use for and if statements together?
So right now you are trying to solve "identify values greater than the overall mean." To break up that part of the problem a bi...

29일 전 | 2

답변 있음
Error using trainNetwork. Layers argument must be an array of layers or a layer graph.
Hi William, the "trainNetwork" function always requires the "options" argument, so version 2 is the correct syntax. If you are ...

3개월 전 | 1

| 수락됨

답변 있음
Can't create subplots
Hi Adli, please try the instructions here: https://www.mathworks.com/matlabcentral/answers/2052722-how-can-i-perform-initial-tro...

4개월 전 | 0

답변 있음
Scale Free graphs based on Albert - Barabasi algorithm?
Hello Asaf, I am not aware of any MathWorks provided example of Scale Free randomly generated graphs. However, there are the fol...

4개월 전 | 0

답변 있음
Object-Oriented simulation of population dynamics
Hi Munzir, since you are looking to model population infection of a disease, an alternative to a "real-time" approach is a simul...

4개월 전 | 0

답변 있음
How to convert four bytes into double ?
The "animatedline" now supports all numeric datatypes along with datetimes and durations natively as of R2023a! In order to plo...

8개월 전 | 0

답변 있음
Scattered Interpolation: Defining my own triangulation?
Hi, I work at MathWorks and I wanted to let you all know that we have forwarded this feedback to the relevant team. We will cons...

10개월 전 | 0

답변 있음
How to add a datetime array to addpoints for an animated line plot?
The "animatedline" now supports all numeric datatypes as well as datetimes and durations for all axes as of R2023a! In order to...

10개월 전 | 0

문제


Mantissa of IEEE Single
Output the mantissa bits as a uint32 of the IEEE representation of the single-typed 32-bit float input. Store these bits in the ...

10개월 전 | 0 | 솔버 수: 4

문제


Sign of IEEE Single
Output the sign bit of the IEEE representation of the single-typed 32-bit float input as the uint8 "1" or the uint8 "0".

10개월 전 | 0 | 솔버 수: 7

문제를 풀었습니다


Exponent of IEEE Single
Output the exponent bits as a uint8 of the IEEE representation of the single-typed 32-bit float input.

1년 초과 전

문제


Exponent of IEEE Single
Output the exponent bits as a uint8 of the IEEE representation of the single-typed 32-bit float input.

1년 초과 전 | 1 | 솔버 수: 8

문제를 풀었습니다


Sum of first n terms of a harmonic progression
Given inputs a, d and n, return the sum of the first n terms of the harmonic progression a, a/(1+d), a/(1+2d), a/(1+3d),....

1년 초과 전

문제를 풀었습니다


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

1년 초과 전

문제를 풀었습니다


Draw a 'Z'.
Given _n_ as input, generate a n-by-n matrix like 'Z' by _0_ and _1_ . Example: n=5 ans= [1 1 1 1 1 0 0 0 1 ...

1년 초과 전

문제를 풀었습니다


Draw a 'X'!
Given n as input Draw a 'X' in a n-by-n matrix. example: n=3 y=[1 0 1 0 1 0 1 0 1] n=4 y=[1 0 0...

1년 초과 전

문제를 풀었습니다


Draw 'O' !
Given n as input, generate a n-by-n matrix 'O' using 0 and 1 . example: n=4 ans= [1 1 1 1 1 0 0 1 ...

1년 초과 전

문제를 풀었습니다


Draw a 'N'!
Given n as input, generate a n-by-n matrix 'N' using 0 and 1 . Example: n=5 ans= [1 0 0 0 1 1 1 0 0 1 1 0 ...

1년 초과 전

문제를 풀었습니다


Draw 'J'
Given n as input, generate a n-by-n matrix 'J' using 0 and 1 . Example: n=5 ans= [0 0 0 0 1 0 0 0 0 1 0 0 ...

1년 초과 전

문제를 풀었습니다


Draw 'I'
Given n as input, draw a n-by-n matrix 'I' using 0 and 1. example: n=3 ans= [0 1 0 0 1 0 0 1 0] n=...

1년 초과 전

문제를 풀었습니다


Draw 'H'
Draw a x-by-x matrix 'H' using 1 and 0. (x is odd and bigger than 2) Example: x=5 ans= [1 0 0 0 1 1 0 0 0 1 ...

1년 초과 전

문제를 풀었습니다


Draw 'F'
Draw a x-by-x matrix 'F' using 1 and 0. (x is odd and bigger than 4) Example: x=5 ans= [1 1 1 1 1 1 0 0 0 0 ...

1년 초과 전

문제를 풀었습니다


Draw 'D'.
Draw a x-by-x matrix 'D' using 0 and 1. example: x=4 ans= [1 1 1 0 1 0 0 1 1 0 0 1 1 1 1 0]

1년 초과 전

문제를 풀었습니다


Draw 'C'.
Given x as input, generate a x-by-x matrix 'C' using 0 and 1. example: x=4 ans= [0 1 1 1 1 0 0 0 ...

1년 초과 전

문제를 풀었습니다


Draw 'B'
Draw a x-by-x matrix 'B' using 1 and 0. (x is odd and bigger than 4) Example: x=5 ans= [1 1 1 1 0 1 0 0 0 1 ...

1년 초과 전

문제를 풀었습니다


Project Euler: Problem 10, Sum of Primes
The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below the input, N. Thank you <http:/...

1년 초과 전

문제를 풀었습니다


Project Euler: Problem 9, Pythagorean numbers
A Pythagorean triplet is a set of three natural numbers, a b c, for which, a^2 + b^2 = c^2 For example, 3^2 + 4^2 = 9 + 16 ...

1년 초과 전

문제를 풀었습니다


Project Euler: Problem 8, Find largest product in a large string of numbers
Find the greatest product of five consecutive digits in an n-digit number. 73167176531330624919225119674426574742355349194934...

1년 초과 전

문제를 풀었습니다


Project Euler: Problem 7, Nth prime
By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13. What is the Nth prime nu...

1년 초과 전

더 보기