photo

Aditya Singh


Indian Institute of Technology Jammu

Last seen: plus de 2 ans il y a Actif depuis 2023

Followers: 0   Following: 0

Programming Languages:
Python, C++, C, Javascript, Go, MATLAB, SQL, Assembly
Spoken Languages:
English, Hindi
Pronouns:
He/him
Professional Interests:
C++ with MATLAB, Software Development Tools, Simulink, End-User Support

Statistiques

All
MATLAB Answers

0 Questions
20 Réponses

Cody

0 Problèmes
31 Solutions

RANG
1 999
of 300 781

RÉPUTATION
32

CONTRIBUTIONS
0 Questions
20 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
2

RANG
 of 21 088

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
15 821
of 171 031

CONTRIBUTIONS
0 Problèmes
31 Solutions

SCORE
357

NOMBRE DE BADGES
2

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
SQL query not working with exec function and sqlite database connection
Hi Pranav, To my understanding you are trying to merge two tables based on certain constraints in SQLite. There is no "MERGE" ...

plus de 2 ans il y a | 0

| A accepté

Réponse apportée
rosinit error - mac-m2 chip
Hi Naveen, The error you're encountering with rosinit on Mac seems to be related to the Python virtual environment creation. To...

plus de 2 ans il y a | 0

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

plus de 2 ans il y a

A résolu


Indexed Probability Table
This question was inspired by a Stack Overflow question forwarded to me by Matt Simoneau. Given a vector x, make an indexed pro...

plus de 2 ans il y a

A résolu


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

plus de 2 ans il y a

A résolu


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

plus de 2 ans il y a

A résolu


Find a Pythagorean triple
Given four different positive numbers, a, b, c and d, provided in increasing order: a < b < c < d, find if any three of them com...

plus de 2 ans il y a

A résolu


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the second...

plus de 2 ans il y a

A résolu


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

plus de 2 ans il y a

Réponse apportée
How to convert serial number to date number
Hi, To my understanding you are trying to convert the serial number to dates of the format DD MM YYYY. The following code will...

plus de 2 ans il y a | 0

| A accepté

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 numbers. Otherwise return false. Example...

plus de 2 ans il y a

A résolu


Encode Roman Numerals
Create a function taking a non-negative integer as its parameter and returning a string containing the Roman Numeral representat...

plus de 2 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 2 ans il y a

Réponse apportée
Heat Map or color map of overlapping multiple line plots
Hi Mark, To my understanding you have a large dataset and want to visualize it. If you want a comprehensive overview of the t...

plus de 2 ans il y a | 0

Réponse apportée
How to create nodal model of cylinder in matlab ?
Hi Sakshi, To my understanding you want to create a nodal model of cyclinder. You can use the meshgrid function to generate a...

plus de 2 ans il y a | 1

A résolu


Target sorting
Sort the given list of numbers |a| according to how far away each element is from the target value |t|. The result should return...

plus de 2 ans il y a

A résolu


Weighted average
Given two lists of numbers, determine the weighted average as follows Example [1 2 3] and [10 15 20] should result in 33.3...

plus de 2 ans il y a

A résolu


Inner product of two vectors
Find the inner product of two vectors.

plus de 2 ans il y a

A résolu


to the 2 all elements
to the 2 all elements

plus de 2 ans il y a

A résolu


Return the Fibonacci Sequence
Write a code which returns the Fibonacci Sequence such that the largest value in the sequence is less than the input integer N. ...

plus de 2 ans il y a

A résolu


Calculate the area of a triangle between three points
Calculate the area of a triangle between three points: P1(X1,Y1) P2(X2,Y2) P3(X3,Y3) these three points are the vertices of ...

plus de 2 ans il y a

Réponse apportée
A question about motion plot
Hi Sina, I understand you want to add line between points in the motion plot. You can do it by plotting a line between the des...

plus de 2 ans il y a | 0

| A accepté

A résolu


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

plus de 2 ans il y a

A résolu


Convert Fahrenheit to Celsius
Calculate the Celsius temperature C given the Fahrenheit temperature F. Examples: Input F = 90 Output C is 32.22 I...

plus de 2 ans il y a

A résolu


reverse string
input='rama' output='amar'

plus de 2 ans il y a

A résolu


ascii value
let input='a' output=97

plus de 2 ans il y a

A résolu


Sum of series I
What is the sum of the following sequence: Σ(2k-1) for k=1...n for different n?

plus de 2 ans il y a

Réponse apportée
Fibonacci Series using while loop .
Hi, I understand you are getting garbage values. The issue in your code is that you have not initialized the fibo array with en...

plus de 2 ans il y a | 1

| A accepté

Réponse apportée
Creating a Matrix( 3 by N*3) from the column vector of 3 other matrices(3 by N), in vectorised operations
Hi, To my understanding you want to concatnate coloumn from each of the matrix. The following code will do it, A=[1 ,10, 19;...

plus de 2 ans il y a | 0

Réponse apportée
Send Outlook email by using .NET
Hi Tero, To my understanding you want to send mail using the .NET API and outlook. Using the actxserver and the oulook API, i...

plus de 2 ans il y a | 0

| A accepté

Charger plus