Ashmil Mohammed - MATLAB Central
photo

Ashmil Mohammed


2015 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB AnswersCodyZoom OutFrom 06/15 to 05/25Use left and right arrows to move selectionFrom 06/15Use left and right arrows to move left selectionTo 05/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

5 質問
6 回答

Cody

0 問題
9 解答

ランク
4,461
of 298,463

評判
12

コントリビューション
5 質問
6 回答

回答採用率
40.0%

獲得投票数
4

ランク
 of 20,594

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
40,056
of 161,375

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

スコア
100

バッジ数
1

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

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

平均評価

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

平均いいねの数

  • Thankful Level 1
  • Knowledgeable Level 1
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

解決済み


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

10年弱 前

回答済み
cannot load target data for pattern recognition in NN Toolbox
Check if the file has only 0s and 1s. Target data should consist of only 0s and 1s. This is a probable error

10年弱 前 | 4

解決済み


Is my wife right?
Regardless of input, output the string 'yes'.

10年弱 前

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

10年弱 前

解決済み


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.

10年弱 前

解決済み


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

10年弱 前

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

10年弱 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

10年弱 前

回答済み
how to write code for the matrix multiplication of trignometric function having 2 unknown
Try this out: syms theta1 theta2 t1=[cos(theta1) -sin(theta1) 0 0;sin(theta1) cos(theta1) 0 0;0 0 1 0;0 0 0 1...

10年弱 前 | 0

回答済み
How to access each digit of a number in matlab without converting it into string?
You may use a foor loop and keep on dividing the number with 10.Use the remainder(modulo operator).

10年弱 前 | 0

回答済み
How can I change an array from grayscale to binary?
Possible solution: *Divide whole array by 255

10年弱 前 | 0

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

10年弱 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

10年弱 前

質問


Detecting and Tracking Moving Objects
I want to detect and track moving objects in a video(live).Kalman filter was an option but it needs either constant velocity or ...

10年弱 前 | 1 件の回答 | 0

1

回答

回答済み
How to delete a row if it doesn't follow a pattern
Try out this code : p=size(m,1);%m is your matrix for i=1:p if mod(i,2)==1 && m(i,size(m,2))~=mod(i,2)...

10年弱 前 | 0

| 採用済み

回答済み
How do i put time for camera to take a picture?
You may use the *pause()* function *after* the _start(vid)_ statement.

10年弱 前 | 0

質問


how to use RANSAC for estimating the geometric transform
how to use RANSAC for estimating the geometric transform of only wanted points. Usually we get all the features extracted (inli...

10年弱 前 | 0 件の回答 | 0

0

回答

質問


problem in ycbcr color space
I am facing some problems in using the ycbcr color space. For a certain purpose this model is the most suitable. But conversio...

10年弱 前 | 3 件の回答 | 0

3

回答

質問


Identify colour patterns/patches
How to find colour patches(patterns ) in an image . Please help Is there any way for this? A sample of the situation is given...

10年弱 前 | 0 件の回答 | 0

0

回答

質問


Can I get distance to an object using single camera
Is there anyway I can find the distance to an object from a camera image? actual size of object,and perpendicular distance betw...

10年弱 前 | 1 件の回答 | 0

1

回答