photo

Aneesh Singhal


--

Actif depuis 2015

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

6 Questions
0 Réponses

Cody

0 Problèmes
15 Solutions

RANG
116 493
of 301 472

RÉPUTATION
0

CONTRIBUTIONS
6 Questions
0 Réponses

ACCEPTATION DE VOS RÉPONSES
0.0%

VOTES REÇUS
0

RANG
 of 21 293

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
30 106
of 174 655

CONTRIBUTIONS
0 Problèmes
15 Solutions

SCORE
170

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Promoter
  • Solver

Afficher les badges

Feeds

Afficher par

Question


Passing an input after making exe
How to pass a date as an input which will be used in sql statement for an exe file made out of m-file?

plus de 9 ans il y a | 1 réponse | 0

1

réponse

Question


Is it possible to connect to 64bit database using 32bit ODBC driver from 64bit MATLAB 2011a?
Is it possible to connect to 64bit database using 32bit ODBC driver from 64bit MATLAB 2011a?

plus de 9 ans il y a | 1 réponse | 0

0

réponse

Question


ODBC connection with 32bit client?
I have 2011a 64bit version of MATLAB. My code connects to database using ODBC connection. I am trying to run exe file made out o...

plus de 9 ans il y a | 1 réponse | 0

1

réponse

Question


Plotting points with polar coordinates
<</matlabcentral/answers/uploaded_files/42495/polar.png>> I have polar coordinates of points with different radius. I want a ...

plus de 10 ans il y a | 1 réponse | 0

1

réponse

A résolu


Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

plus de 10 ans il y a

A résolu


Most nonzero elements in row
Given the matrix a, return the index r of the row with the most nonzero elements. Assume there will always be exactly one row th...

plus de 10 ans il y a

A résolu


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the other numbers. Otherwise return false. E...

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...

plus de 10 ans il y a

A résolu


Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...

plus de 10 ans il y a

Question


How to make a 3D figure of a furnace which has temperature displayed on its surface?
I have temperature data from thermocouples which are at different height on the surface of furnace. I know their respective heig...

plus de 10 ans il y a | 1 réponse | 0

0

réponse

A résolu


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

plus de 10 ans il y a

A résolu


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a