photo

Ashmil Mohammed


Attivo dal 2015

Followers: 0   Following: 0

Statistica

All
MATLAB Answers

5 Domande
6 Risposte

Cody

0 Problemi
9 Soluzioni

RANK
4.180
of 300.369

REPUTAZIONE
12

CONTRIBUTI
5 Domande
6 Risposte

ACCETTAZIONE DELLE RISPOSTE
40.0%

VOTI RICEVUTI
4

RANK
 of 20.936

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
41.605
of 168.407

CONTRIBUTI
0 Problemi
9 Soluzioni

PUNTEGGIO
100

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

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

Visualizza badge

Feeds

Visto da

Risolto


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

oltre 10 anni fa

Risposto
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

oltre 10 anni fa | 4

Risolto


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

oltre 10 anni fa

Risolto


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

oltre 10 anni fa

Risolto


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.

oltre 10 anni fa

Risolto


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

oltre 10 anni fa

Risolto


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

oltre 10 anni fa

Risolto


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

oltre 10 anni fa

Risposto
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...

oltre 10 anni fa | 0

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

oltre 10 anni fa | 0

Risposto
How can I change an array from grayscale to binary?
Possible solution: *Divide whole array by 255

oltre 10 anni fa | 0

Risolto


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

oltre 10 anni fa

Risolto


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:...

oltre 10 anni fa

Domanda


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

oltre 10 anni fa | 1 risposta | 0

1

risposta

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

oltre 10 anni fa | 0

| accettato

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

oltre 10 anni fa | 0

Domanda


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

oltre 10 anni fa | 0 risposte | 0

0

risposte

Domanda


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

oltre 10 anni fa | 3 risposte | 0

3

risposte

Domanda


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

oltre 10 anni fa | 0 risposte | 0

0

risposte

Domanda


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

oltre 10 anni fa | 1 risposta | 0

1

risposta