photo

rakshit gupta


Last seen: 1 year ago Active since 2023

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
9 Answers

RANK
3,057
of 297,457

REPUTATION
18

CONTRIBUTIONS
0 Questions
9 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
1

RANK
 of 20,438

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 158,938

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 2
  • First Answer

View badges

Feeds

View by

Answered
Saving timetable for each iteration
You can cell function to create an empty cell array to store the tables. tables = cell(1, 10); for i = 1:10 sampleti...

1 year ago | 0

| accepted

Answered
Loop with fminsearch and cell arrays
I think the issue is how you are accessing the elements of 'a' and 'p'. Access the elements using curly braces '{}' instead of '...

1 year ago | 0

Answered
how to obtain Roll, Pitch, Yaw of accelerometer and X,Y and Z values of Ang rate invidually ?
Demux block can be used here to get three outputs individually. You can refer to Demux.

1 year ago | 1

| accepted

Answered
How to convert simlulink blocks in the Robotics Toolbox into dll files?
You can generate a shared library (DLL) file from a Simulink block using the Simulink Coder feature called "Code Generation". F...

2 years ago | 0

Answered
generarting vector or standard normal in matlab
One possible way to generate a random vector z in MATLAB such that z * z.' is an identity matrix is to use the randn function to...

2 years ago | 0

| accepted

Answered
Function optimization meeting conditions
You can consider following changes to the code to optimize the function while meeting the condition h(j+1)>h(j). Modify the Ins...

2 years ago | 0

Answered
How can I selectively import data from two matrices into a third?
You can refer to the the code below: % Define the real and theoretical data tables real_data = [126.75, 980; 24...

2 years ago | 0

Answered
How to convert data types in Python to mlarray?
To convert a ndarray to a mlarray in Python using MATLAB Engine, you can use the 'matlab.double()' function. Here's an example ...

2 years ago | 0

Answered
How to remove column with 0 in matrix?
You can use the squeeze() function in MATLAB to remove dimensions with size 1 in a multidimensional array. The following code ...

2 years ago | 0

| accepted