photo

Umar


Last seen: 1日 前 2024 年からアクティブ

Followers: 26   Following: 4

Community volunteer, like to help people by making difference in their lives

Programming Languages:
Python, C++, C, Java, C#, Javascript, R, MATLAB, SQL, HTML, CSS, Arduino, Shell, Assembly, VHDL, Visual Basic
Spoken Languages:
English
Pronouns:
He/him

統計

All
MATLAB Answers

0 質問
756 回答

File Exchange

2 ファイル

Cody

0 問題
655 解答

Discussions

1 ハイライト

ランク
114
of 301,383

評判
1,146

コントリビューション
0 質問
756 回答

回答採用率
0.00%

獲得投票数
120

ランク
19,362 of 21,252

評判
1

平均評価
0.00

コントリビューション
2 ファイル

ダウンロード
2

ALL TIME ダウンロード
10

ランク
159
of 174,306

コントリビューション
0 問題
655 解答

スコア
8,496

バッジ数
35

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
1 ハイライト

平均いいねの数
0

  • MATLAB Central Treasure Hunt Finisher
  • Most Accepted 2025
  • 6 Month Streak
  • Sequences And Series I Master
  • Computational Geometry I Master
  • Explorer
  • First Review
  • Matrix Manipulation I Master
  • Cody Contest 2025 Finishers
  • ASEE Challenge Master
  • Scholar
  • Cody Challenge Master

バッジを表示

Feeds

回答済み
ParallelAssembly: Define the cell gap in x and y direction differently?
Hi @Fabian, Thanks for your question — I looked into this and wanted to share what I found. Unfortunately, the short answe...

1日 前 | 0

回答済み
Simple battery inverter model in Simscape Electrical
Hi @Mikel, Saw your post and figured I'd put together everything I found so you don't have to chase it down yourself. Firs...

5日 前 | 0

| 採用済み

解決済み


Find the stride of the longest skip sequence
We define a _skip sequence_ as a regularly-spaced list of integers such as might be generated by MATLAB's <http://www.mathworks....

6日 前

解決済み


Sum the Infinite Series
Given that 0 < x and x < 2*pi where x is in radians, write a function [c,s] = infinite_series(x); that returns with the...

6日 前

解決済み


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

6日 前

解決済み


"Look and say" sequence
What's the next number in this sequence? * [0] * [1 0] * [1 1 1 0] * [3 1 1 0] * [1 3 2 1 1 0] This a variant on the w...

6日 前

解決済み


Square Digits Number Chain Terminal Value (Inspired by Project Euler Problem 92)
Given a number _n_, return the terminal value of the number chain formed by summing the square of the digits. According to the P...

6日 前

解決済み


Integer sequence - 2 : Kolakoski sequence
Get the n-th term of Kolakoski Sequence.

6日 前

解決済み


Golomb's self-describing sequence (based on Euler 341)
The Golomb's self-describing sequence {G(n)} is the only nondecreasing sequence of natural numbers such that n appears exactly G...

6日 前

解決済み


Projector Matrix
Write a function to determine whether or not the matrix is a projector. Projector matrices are defined as P^2 = P.

7日 前

解決済み


Nilpotent matrix
Check if matrix A is <http://mathworks.com/ nilpotent>.

7日 前

解決済み


Orthonormal matrix
You decide whether any given matrix is an orthonormal matrix or not. If each column in a matrix is perpendicular to the other...

7日 前

解決済み


Is this matrix orthogonal?
Given a square matrix, a, determine whether it is orthogonal. INPUT: a, a n x n matrix OUTPUT: true or false

7日 前

解決済み


Determine if input is a valid AHP evaluation matrix
Input is a matrix. Output is a true or false statement (1 or 0). Return true if input is a valid Analytic Hierarchy Process eval...

7日 前

解決済み


Outer product of multiple vectors
In tensor algebra, it is often useful to define a tensor as a product of lower order tensors. Similarly, a multidimensional arra...

7日 前

解決済み


Combined Ages 4 - Non-symmetric with multiples, n ≥ 3
This problem is slightly more difficult than <http://www.mathworks.com/matlabcentral/cody/problems/42383-combined-ages-3-non-sym...

7日 前

解決済み


Combined Ages 3 - Non-symmetric, n ≥ 3
Pursuant to the previous two problems ( <http://www.mathworks.com/matlabcentral/cody/problems/42382-combined-ages-1-symmetric-n-...

7日 前

回答済み
code improvement/optimization
Hi @Cesar, Good progress overall — moving to Radau IIA and SDIRK was the right call. Robertson is a stiff problem and implic...

8日 前 | 0

回答済み
matlab/simulink+tensorflow problem
Hi @Sato, This one's actually more of a MATLAB-Python environment issue than a TensorFlow problem, even though the error make...

10日 前 | 0

回答済み
Can System Composer read parameters directly from JSON or XML?
Hey @Erica, Great question — I've been down this rabbit hole before with System Composer, so hopefully I can save you some time...

11日 前 | 1

回答済み
Flexibility in Satellite Toolbox
Hi @Kevin, On the rectangular FOV front — you're right, it's not there. The toolbox only ships with ConicalSensor, which uses...

16日 前 | 0

解決済み


Great Circle Distance
Find shortest between two points on a ball given their azimuthal and polar angles (in degrees) as well as the radius of the sphe...

18日 前

解決済み


Smallest distance between a point and a rectangle
Given two points *x* and *y* placed at opposite corners of a rectangle, find the minimal euclidean distance between another poin...

18日 前

解決済み


Clockwise or Counterclockwise
Given a list of 2-d points defining the vertices of a polygon, determine whether these points are sorted clockwise. The input...

18日 前

解決済み


Are you in or are you out?
Given vertices specified by the vectors xv and yv, and a single point specified by the numbers X and Y, return "true" if the poi...

18日 前

解決済み


Circumscribed circles
Given the lengths of the 3 sides of a triangle, output the radius of the circumscribed circle. Example: [3 4 5] -> 2.5

18日 前

解決済み


Similar Triangles - find the height of the tree
Given the height, h1, of a power pole, shorter than a tree, a given distance, x2 away, please find h2, height of the tree. Pleas...

18日 前

解決済み


Angle between two vectors
You have two vectors , determine the angle between these two vectors For example: u = [0 0 1]; v = [1 0 0]; The a...

18日 前

解決済み


Clock Hand Angle 1
Given a time in HH:MM:SS, find the smallest angle (in degrees) between the hour and minute hand

18日 前

解決済み


Covering area
As an extension of the problem <http://www.mathworks.com/matlabcentral/cody/problems/416-polygon-area>, find the area, bounded b...

18日 前

さらに読み込む