photo

ES


Last seen: 1 day ago Active since 2013

Followers: 0   Following: 0

Message

Model based Software Developer and Software Integrator with rich experience in development and delivery of software for Automotive Embedded Systems additionally equipped with skills, knowledge and experience in working in other areas of software development including Requirements Engineering, Configuration Management, Test and Development Automation, Software Testing, Test Management and Continuous Integration. And more than any of these, I love my job like nobody. The rest always falls in place.

Statistics

All
MATLAB Answers

27 Questions
495 Answers

File Exchange

3 Files

Cody

0 Problems
199 Solutions

RANK
124
of 300,499

REPUTATION
1,009

CONTRIBUTIONS
27 Questions
495 Answers

ANSWER ACCEPTANCE
37.04%

VOTES RECEIVED
169

RANK
12,711 of 21,021

REPUTATION
28

AVERAGE RATING
0.00

CONTRIBUTIONS
3 Files

DOWNLOADS
2

ALL TIME DOWNLOADS
290

RANK
1,375
of 169,381

CONTRIBUTIONS
0 Problems
199 Solutions

SCORE
1,868

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • MATLAB Central Treasure Hunt Finisher
  • Scavenger Finisher
  • Revival Level 2
  • Knowledgeable Level 5
  • Solver
  • Explorer
  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • 12 Month Streak
  • Thankful Level 3
  • Pro

View badges

Feeds

Solved


The MATLAB Treasure Hunt – Unlock the Final Chamber by Solving the Ancient Numeric Cipher
You’ve reached the Final Chamber, where a glowing pedestal displays a sequence of numbers. The inscription reads: “Only the su...

6 days ago

Solved


The MATLAB Treasure Hunt – Escape the Labyrinth of Logic by Unlocking the Correct Door Sequence
You enter the Labyrinth of Logic, where each door opens only if a secret rule is met. A vector of integers represents door code...

6 days ago

Solved


The MATLAB Treasure Hunt – Extract the Hidden Cave’s Coordinates from a Long List of Numbers
After decoding the first clue, you uncover another piece of parchment — a long list of numbers. At first glance, it looks random...

6 days ago

Solved


The MATLAB Treasure Hunt – Decode the Ancient Script by Removing Strange Symbols from the Message
Emerging from the Maze of Numbers, you find a tablet etched with symbols and letters — an Ancient Script! The message is hidden...

6 days ago

Solved


The MATLAB Treasure Hunt – Locate the Hidden Treasure in the Chamber of Coordinates
Inside the Chamber of Coordinates, glowing runes show several coordinate points on a 2D grid. The treasure lies closest to the ...

6 days ago

Solved


The MATLAB Treasure Hunt – Identify the Hidden Pattern Within the Maze of Numbers
The compass leads you to an underground chamber covered in numbers carved into the walls — a maze of digits that glows in myster...

6 days ago

Solved


The MATLAB Treasure Hunt – Fix the Broken Compass by Normalizing Its Angle Readings
Your compass, recovered from the Hidden Cave, spins wildly! The ancient device shows angles that exceed 360° or drop below 0°. T...

6 days ago

Solved


The MATLAB Treasure Hunt – Cross the River of Ratios by Finding Successive Proportions in the Data Stream
Following the glowing script, you arrive at the River of Ratios — a flowing stream of numbers. A carved message on the rocks re...

6 days ago

Solved


The MATLAB Treasure Hunt – Count Matching Symbols on the Ancient Scroll to Unlock the Next Clue
Inside the Hidden Cave, you discover an ancient scroll filled with strange symbols and markings. A note beside it says: “Count ...

6 days ago

Solved


The MATLAB Treasure Hunt – Decode the First Clue Hidden in a Jumbled Sequence of Numbers
You discover an ancient parchment inside the college archives. It contains a jumbled sequence of numbers that seems meaningless ...

6 days ago

Answered
Calling python while program execution in matlab
Please try Python Engine for MATLAB. What you intend is fully achievable. https://in.mathworks.com/help/matlab/matlab-engine-fo...

5 years ago | 0

Answered
Silent install MATLAB on windows
Yes we use silent install all the time. It is described well here. https://in.mathworks.com/help/install/ug/install-noninteract...

5 years ago | 0

| accepted

Answered
How can I find if there is a History Junction in a Stateflow using MATLAB Script?
https://in.mathworks.com/help/stateflow/api/accessing-existing-stateflow-objects.html

5 years ago | 0

Answered
how to select the second maximum value for an array.
B = sort(A, 'descend'); Max2 = B(2);

6 years ago | 0

Question


launching new instances of MATLAB with COM objects
Hello all, I am trying to launch MATLAB application using a python script (for some automation). I use Python 2.7, MATLAB R2...

6 years ago | 0 answers | 0

0

answers

Answered
Numerical cell value changes to random symbols when using strcat - help needed
Since your testno is numeric, the when you do strcat, the number is converted to a character. What you want is that number t...

6 years ago | 0

Question


How to find unused parts of a simulink model?
Hello all, I have a huge simulink model (R2016B). some parts of the model are not used anywhere (as in, the inputs are grounded...

6 years ago | 1 answer | 0

1

answer

Answered
Show a txt text in matlab interface
read the .txt file using fopen or textscan or any other function you find suitable for your data. Display in an edit box or sta...

6 years ago | 0

Answered
Is there a way to split MATLAB m scripts into a header file with multiple include files?
Hi, since the original file (test.m) is a script, you can just split the file into as many segments (different files) as you wa...

6 years ago | 0

| accepted

Question


What is an optimum value for Java Heap Memory?
Hello all, Can you please suggest the optimum value for Java Heap Memory Preference in MATLAB? I use MATLAB R2016B (64 bit). ...

6 years ago | 1 answer | 0

1

answer

Answered
can I open a new guide from last guide by pressing the button?
A GUI is nothing more than a Matlab function. If the name of the GUI is in MATLAB path, you can call it as you would call any ot...

6 years ago | 0

Answered
Embedded coder,matlab coder, simulink coder ?
You can find the full details in the official documentation. You can also find some info here. https://in.mathworks.com/mat...

6 years ago | 0

| accepted

Answered
Edit datset saved as a fig file
.fig is basically a .mat file. Rename the file to .mat and load data and try.

6 years ago | 0

| accepted

Answered
Organize a Simulink Model
https://in.mathworks.com/matlabcentral/fileexchange/45670-bot

6 years ago | 0

Answered
License for downlevel versions
https://in.mathworks.com/matlabcentral/answers/91515-are-license-files-and-file-installation-keys-backwards-compatible

6 years ago | 0

Answered
Sum of matrix elements
cumsum(p)

6 years ago | 0

Answered
how to save value from display block in simulink?
workspace logs data in all simulation cycles, whereas the display block displays the only the current simulation data. If you w...

6 years ago | 0

| accepted

Question


While assigning a variable, is the variable cleared by default before the assignment?
Hello all, please clarify my doubt regarding variable assignment in MATLAB. say for iLoop=1:100%Line_1 output=someCalcula...

6 years ago | 1 answer | 0

1

answer

Answered
How to store data and use data at particular instant in Simulink?
Use delay block value to reload the last value whenever the RMS value changes.

6 years ago | 0

Answered
Load Text in Edit field AppDesigner
You have to update the edit field value from the callback of the load button. %% function for the load button. function LOAD...

6 years ago | 1

| accepted

Load more