photo

Jatin


Last seen: 13 jours il y a Actif depuis 2024

Followers: 0   Following: 0

Programming Languages:
C++, C, Java, Javascript, MATLAB, Scala, SQL, CSS
Spoken Languages:
English, Hindi, German
Pronouns:
He/him

Statistiques

  • 3 Month Streak
  • Knowledgeable Level 3
  • First Answer

Afficher les badges

Feeds

Afficher par

Réponse apportée
Position x labels in a compound bar plot
Hi @Kevin Thomson, To position the xlabel under bar 2, you can use the 'xticks' function to set the x-label positions. Here's a...

environ un mois il y a | 0

Réponse apportée
Memory Mapping Error in ARXML File
Hi @MAHENDRAN A, If your code doesn't include memory mapping, you can add it yourself using the example below. Here are a few t...

environ un mois il y a | 0

Réponse apportée
Determination of Event set from matrix
Hi @Poulomi, From your explanation, I understand that if an event starts and ends with an index of 5, and there is a 2 sandwich...

2 mois il y a | 0

| A accepté

Réponse apportée
uifigure output inline with live script
Hi @Brennan Fox, In MATLAB, "uifigure" objects are intended to function as standalone windows and cannot be directly embedded i...

2 mois il y a | 1

| A accepté

Réponse apportée
How can the results of Polyspace Code Prover be shared?
Hi @vivek manchala, You can indeed share your Polyspace analysis results with your team even if they don't have a Polyspace lic...

2 mois il y a | 0

Réponse apportée
error running getting started code
Hi @Jennifer, The warning "Matrix is singular to working precision" occurs when the matrix you're trying to invert, is close to...

2 mois il y a | 0

Réponse apportée
Static analysis of .m files
Hi Ashley, You're correct that there isn't a specific static analysis tool for MATLAB files, and your understanding is right th...

2 mois il y a | 0

Réponse apportée
How to include another source file to Polyspace Code Prover analysis WITHOUT verifying this extra file?
Hi @Fredrik Ellis, From what I understand, you want to run Polyspace Code Prover on a source file while using the real implemen...

2 mois il y a | 0

Réponse apportée
Indexing in a loop using fileparts
Hi @James, The error you're encountering is due to MATLAB not interpreting the chain of indexing, which is why attempting "TS(n...

2 mois il y a | 0

| A accepté

Réponse apportée
Unable to install minGW-w64 in Matlab2021b
Hi @Nagendra Babu Ellapu, If you're having trouble downloading MinGW-w64 through the MATLAB add-on manager, you can try downloa...

2 mois il y a | 0

| A accepté

Réponse apportée
Slow simulation when Listeners are added
Hi @Ninad, Running a Simulink model with real-time data acquisition and plotting through a GUI, updated using listeners, can in...

2 mois il y a | 0

Réponse apportée
how can i change class properties
Hi @홍석, As per my understanding you are trying to implement add on functions in class and getting "user defined classes are not...

2 mois il y a | 0

Réponse apportée
Is there a meaningful guideline on when to use parentheses vs square brackets vs curly brackets in writing MatLab code?
Hi @Jerome, In MATLAB, parentheses, square brackets, and curly braces serve distinct purposes depending on the context. Your co...

2 mois il y a | 2

Réponse apportée
How can I adjust boxchart to have different number of groups for different nr of classes?
Hi @Marietta, Based on my understanding, you want to create a 'boxchart' with a different number of classes for each group. You...

2 mois il y a | 0

| A accepté

Réponse apportée
Data type conversion in simulink
Hi @shailee, To convert the real and imaginary parts of a complex number into their respective hexadecimal representations in S...

2 mois il y a | 0

| A accepté

Réponse apportée
Matlab mlapp gui auto minimises once folder selected using uigetdir() command is there any way to resotre main gui once folder selection done.
Hi @vishnu, From my understanding, you are looking to restore the main GUI once the folder selection is completed using the 'ui...

2 mois il y a | 0

| A accepté

Réponse apportée
How to set YLim for multiple Yaxis on UIaxes
Hi @Govind Sankar Madhavan Pillai Ramachandran Nair The line 'yyaxis(app.UIAxes, 'right')' activates the right y-axis for the s...

2 mois il y a | 1

Réponse apportée
Function file does not work
Hi @Nehad, The error message you are encountering typically happens when MATLAB can't find the function you're trying to call. ...

2 mois il y a | 0

| A accepté

Réponse apportée
What is the duration of Mathworks Matlab Online student license?
Hi @PChoppala, The MATLAB Student Version license is perpetual, meaning you can use it indefinitely without needing to renew it...

2 mois il y a | 1

Réponse apportée
interpreting xcorr for time series plots
Hi @CG, The result you should choose depends on the context of your analysis. The "xcorr" function represents "the similarity b...

2 mois il y a | 0

Réponse apportée
Subplot existing plots with left, right, bottom, and top axes.
Hi @Mohammed Ali, You can utilize a tiled layout using "nexttile", where each tile contains an independent plot. Additionally, ...

2 mois il y a | 0

Réponse apportée
How do i fix this 'not enough input arguments' error
Hi @EDWARD, When you define a function within a script, MATLAB identifies the function by the file name. Therefore, executing t...

2 mois il y a | 0

Réponse apportée
How to control color of each bar (all stacks same color) in stacked bar chart?
Hi @Abhinav, If we go through the documentation for the 'FaceColor' property of a 'barh' object, we see that the 'FaceColor' mu...

2 mois il y a | 0

| A accepté

Réponse apportée
Issue with plotting order
Hi @Emily Barber, If you refer to the documentation on "Graphics Objects Hierarchy," you'll see that the plotting order is base...

2 mois il y a | 0

| A accepté

Réponse apportée
How to test custom class with unit test class
Hi @Christian, To correctly create an instance of your custom class within the test class, define a property in the test class ...

2 mois il y a | 0

| A accepté

Réponse apportée
tic toc delayed output inside for loop
Hi @JG, The script you provided does work as intended. According to the documentation for the "tic" and "toc" functions, it is ...

2 mois il y a | 0

Réponse apportée
Disable Autofiltermode in excel sheet using matlab script
Hi @Logson maddy, Your script to disable the "autofiltermode" is almost correct. The issue lies in assigning 'False' as a stri...

3 mois il y a | 0

Réponse apportée
I want to loop an exponential until it reaches a certain number and then check how many interations it takes for the loop to reach that certain number
Hi @Vincent Kollberg Leeiner, You can use the “while” function in MATLAB which iterates through a code until a condition is me...

3 mois il y a | 0

Réponse apportée
The same plotting problem, it is appear that one of the marker does not show on the graph but it should have been properly plot and the legend has shown properly too
Hi @Elisa, After running your code with dummy values I found that your plot does show the marker. You may want to check your lo...

3 mois il y a | 0

Réponse apportée
How do we edit xticks datetime format?
Hi @Daniel Bridges, The “xticks” function you are trying to use is meant to set or query x-axis tick values, it doesn’t provid...

3 mois il y a | 0

Charger plus