Aditya Singh
Indian Institute of Technology Jammu
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
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
統計
All
Feeds
回答済み
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" ...
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" ...
1年以上 前 | 0
| 採用済み
回答済み
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...
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...
1年以上 前 | 0
回答済み
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...
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...
1年以上 前 | 0
| 採用済み
回答済み
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...
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...
1年以上 前 | 0
回答済み
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...
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...
1年以上 前 | 1
回答済み
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...
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...
1年以上 前 | 0
| 採用済み
回答済み
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...
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...
1年以上 前 | 1
| 採用済み
回答済み
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;...
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;...
1年以上 前 | 0
回答済み
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...
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...
1年以上 前 | 0
| 採用済み
回答済み
Turning ssc file with written code into a simscape block
Hi Arushi, To my understanding you are looking to use the custom component made in ssc file in your simscape model. You need t...
Turning ssc file with written code into a simscape block
Hi Arushi, To my understanding you are looking to use the custom component made in ssc file in your simscape model. You need t...
1年以上 前 | 0
| 採用済み
回答済み
How can i pass a matlab struct variable into a C MEX S function as an input argument?
Hi, To my understanding you need to pass MATLAB struct to MEX function. You can do it by calling the C function with a MATLA...
How can i pass a matlab struct variable into a C MEX S function as an input argument?
Hi, To my understanding you need to pass MATLAB struct to MEX function. You can do it by calling the C function with a MATLA...
1年以上 前 | 0
回答済み
How to calculate the Euler angles between X, Y and Z axes (in Deg) between two 3D points
Hi Rizwana, To my understanding, you have two points and want to calculate the Euler angles between them. You need to do is fi...
How to calculate the Euler angles between X, Y and Z axes (in Deg) between two 3D points
Hi Rizwana, To my understanding, you have two points and want to calculate the Euler angles between them. You need to do is fi...
1年以上 前 | 0
回答済み
How to make a loop through *.asc data
Hi Ante, To my understanding you want to read a .asc file and iterate through the data. As the asc files contains character st...
How to make a loop through *.asc data
Hi Ante, To my understanding you want to read a .asc file and iterate through the data. As the asc files contains character st...
1年以上 前 | 0
回答済み
How to open 2D planar image .bim format
Hi, To my understanding, you want to open a .bim format file in MATLAB. This comment answers how to open the .bim format file...
How to open 2D planar image .bim format
Hi, To my understanding, you want to open a .bim format file in MATLAB. This comment answers how to open the .bim format file...
1年以上 前 | 0
| 採用済み
回答済み
How to extract the reflectance from a remote sensing image?
Hi, To my understanding you want to know why the error is coming and how to fix, I have taken the following code sample, file...
How to extract the reflectance from a remote sensing image?
Hi, To my understanding you want to know why the error is coming and how to fix, I have taken the following code sample, file...
1年以上 前 | 0
回答済み
How do I get a character array to return a sentence stored in a single row character vector?
Hi Serena, You need to iterate over the words and then concatnate to the character array. function sentence = sentenceMaker(w...
How do I get a character array to return a sentence stored in a single row character vector?
Hi Serena, You need to iterate over the words and then concatnate to the character array. function sentence = sentenceMaker(w...
1年以上 前 | 0
回答済み
Using a "CUDAKernel" type object within a parfor loop
Hello Joseph, As per my understanding, you are facing an issue in using CUDAKernel in parfor loop, so you tried a workaround. ...
Using a "CUDAKernel" type object within a parfor loop
Hello Joseph, As per my understanding, you are facing an issue in using CUDAKernel in parfor loop, so you tried a workaround. ...
1年以上 前 | 0
回答済み
Method to design real-time controller for cTrader c# application integration
Hello, To my understanding you are trying to develop an application and wants to get some resources to get started. Communicat...
Method to design real-time controller for cTrader c# application integration
Hello, To my understanding you are trying to develop an application and wants to get some resources to get started. Communicat...
1年以上 前 | 0
回答済み
uitreenode size\position change
Hello AKI, As per my understanding you want to change the position of ‘uitreenode’. Uitrees are created with a default positio...
uitreenode size\position change
Hello AKI, As per my understanding you want to change the position of ‘uitreenode’. Uitrees are created with a default positio...
1年以上 前 | 0
回答済み
Warning: Table data is not editable at this location. uitable turn from array type into to single element (1x1)
Hello Enkuneh, As per my understanding you want to access the data from the table, but in doing so you are currently getting e...
Warning: Table data is not editable at this location. uitable turn from array type into to single element (1x1)
Hello Enkuneh, As per my understanding you want to access the data from the table, but in doing so you are currently getting e...
1年以上 前 | 0