photo

goc3


Last seen: Today Actif depuis 2014

Followers: 23   Following: 14

Message

Member of the Community Advisory Board since its inception | MATLAB enthusiast | Code optimizer | Software tester | Materials scientist / mechanical engineer by degree and licensure | Grammar adherent | Favorite element: rhenium

Programming Languages:
MATLAB, HTML, CSS
Professional Interests:
App Building, Data Analysis, Material Sciences, Statistics, Mechanical Engineering

Statistiques

All
MATLAB Answers

6 Questions
11 Réponses

Cody

141 Problèmes
3918 Solutions

Discussions

32 Points forts

RANG
1 395
of 302 031

RÉPUTATION
52

CONTRIBUTIONS
6 Questions
11 Réponses

ACCEPTATION DE VOS RÉPONSES
83.33%

VOTES REÇUS
17

RANG
 of 21 508

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
10
of 178 295

CONTRIBUTIONS
141 Problèmes
3918 Solutions

SCORE
52 794

NOMBRE DE BADGES
226

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
32 Points forts

NOMBRE MOYEN DE LIKES
3

  • Treasure Hunt Participant
  • MATLAB Central Treasure Hunt Finisher
  • Knowledgeable Level 2
  • Thankful Level 2
  • Cody5 Hard Master
  • Cody Contest 2025 Finishers
  • First Review
  • Number Manipulation I Master
  • Sequences And Series III Master
  • R2016b Feature Challenge Master
  • Likeable
  • Introduction to MATLAB Master

Afficher les badges

Feeds

Afficher par

A résolu


The End of the World
given a date -- represent it in the Maya long count system. <https://en.wikipedia.org/wiki/Maya_calendar> <https://maya.nm...

1 jour il y a

A résolu


Lost days
Given two dates in a particular format, calculate the difference between them.

1 jour il y a

A résolu


leap year
find the number of leap years within the given time interval

1 jour il y a

A résolu


Find the day for a date
Today's day and date will be given to you. By utilising that you need to find the day of the old date. (Date will be in DD/MM/YY...

1 jour il y a

A résolu


Friday the 13th
According to superstition, lots of unpleasant stuff happens on Friday the 13th, so you might like to find the next occurence of ...

1 jour il y a

A résolu


Day counter function
Write a function called day_counter that returns the number of Mondays that fell on the first day of the month in a given year b...

1 jour il y a

A résolu


How long until the weekend?
Write a function a that takes a date vector as an input and returns the number of hours until the weekend begins. The beginning...

1 jour il y a

A résolu


Count the days
Count the occurrence of a particular day (e.g. Monday) for a given duration.

1 jour il y a

Poll


What is your stance on AI tools?

1 jour il y a | 22 votes | 0 comments

A résolu


Convert float to base N
The matlab function dec2base converts a positive integer number to a specified base. Extend it so that it works with non intege...

4 jours il y a

A résolu


Integer complexity (Large numbers)
Inspired by <http://www.mathworks.com/matlabcentral/cody/problems/42831-integer-complexity Problem 42831>, this problem aims to ...

4 jours il y a

A résolu


Integer complexity
Given an array, n, of positive integers, return an array, c, of the same size, in which each element is the complexity of the co...

4 jours il y a

A résolu


Number construction III
Given a positive integer, n, return a, b and c, such that 1. n = a^1.5+b^2.5+c^3.5 2. a, b and c are all positive integers...

4 jours il y a

A résolu


Number construction II
Given a positive integer, n, return a, b, c and d, such that 1. n = a*2^b+c*3^d 2. a, b, c and d are all positive integers...

4 jours il y a

A résolu


Number construction I
Given a positive integer, n, return a, b, c and d, such that 1. n = a*sqrt(b)+c*sqrt(d) 2. a, b, c and d are all positive ...

4 jours il y a

A résolu


Kaggle: Reverse Game of Life - Single Move to One Cell Case
<http://www.kaggle.com/c/conway-s-reverse-game-of-life Kaggle's Conway's Reverse Game of Life> contest inspires this Single Reve...

4 jours il y a

A résolu


Hamiltonian Cycle
This is related to the Travelling Salesman Problem 1339 created by Alex P. A Hamiltonian cycle or traceable cycle is a path tha...

4 jours il y a

A résolu


Find the logic and return the nth number
given a sequence of numbers arranged in the following order: A=0,1,3,4,9,10,12,13,27,28,30,31,36,37,...... Write a function th...

5 jours il y a

A résolu


Queen's move - 02
In continuation with the problem-45236 ... In the previous problem, it was assumed that there were no other chess pieces on th...

5 jours il y a

A résolu


Queen's move
given a number of consecutive moves of queen, check for their validity based on their previous position.... but remember if u g...

5 jours il y a

A résolu


Sum the unitary divisors of a number
Cody Problems 1933 and 46898 deal with , the sum of divisors function. This problem deals with , the sum of unitary divisors fun...

5 jours il y a

A résolu


Count the unitary divisors of a number
Cody Problem 56738 asks for a list of the unitary divisors of a number. For this problem, write a function to count the unitary ...

5 jours il y a

A résolu


List unitary divisors of a number
A unitary divisor of a number divides and satisfies gcd(,) = 1. For example, 9 is a unitary divisor of 18 because gcd(9,2) = ...

5 jours il y a

A résolu


List every vertices neighbor indices
Input T is a triangulation. The purpose of this function is to query at once the cell array N of all vertex neighbor indices......

5 jours il y a

A résolu


Spiral Mandala
Generate a clockwise spiral pattern using 1s in an N×N matrix to create an intricate mandala effect. e.g. N = 5; y_correct...

5 jours il y a

A résolu


Starburst Mandala
Create a mandala starburst using diagonal and orthogonal symmetry in a matrix.

5 jours il y a

A résolu


Hourglass Mandala
Generate an hourglass shape using matrix geometry and symmetry. e.g. N = 5; 1 1 1 1 1; 0 1 1 1 0; ...

5 jours il y a

A résolu


Vertical Mirror Mandala
Create a symmetric left-right mirrored pattern in an N×N matrix to emulate mandala reflection symmetry. e.g. N = 5; ...

5 jours il y a

A résolu


Concentric Squares Mandala
Generate concentric square rings of alternating 1s and 0s to form a layered mandala-style matrix. e.g. N = 5; 1 1 1 1 1;...

5 jours il y a

A résolu


Circular Ring Approximation Mandala
Generate a matrix that approximates a circular ring using distance-based thresholding , a visually rich mandala-inspired challen...

5 jours il y a

Charger plus