photo

Monika Phadnis

Last seen: alrededor de 2 años hace Con actividad desde 2019

Followers: 0   Following: 0

Estadística

All
  • Revival Level 1
  • 3 Month Streak
  • Knowledgeable Level 2
  • Community Group Solver
  • Introduction to MATLAB Master
  • First Answer
  • Solver

Ver insignias

Feeds

Ver por

Respondida
Appdesigner drop down (popupmenu) keyboard navigation
'uidropdown' component supports this workflow as well. If you set the 'Editable' property to 'on', users can enter text in drop...

casi 4 años hace | 1

Respondida
checkbox in APP designer
R2020b Documentation for 'uitable' specifies that logical arrays will be displayed as checkboxes. Refer this page: https://www...

casi 4 años hace | 2

| aceptada

Respondida
test uitable cell edit event with App Testing Framework
You can edit values in the table by editing the 'Data' property of 'uitable'. Assuming, we have app with a single UI element - ...

casi 4 años hace | 0

Respondida
Curve fitting in Simulink
You can try to achieve this workflow using Lookup tables in Simulink. Refer the following documentation: https://www.mathworks...

casi 4 años hace | 0

Respondida
Sigmoid activation layer in Deep Learning Toolbox?
You can define a custom activation layer in Deep Learning Toolbox following this doc page: https://www.mathworks.com/help/deep...

más de 4 años hace | 0

Respondida
Catching messages displayed on the command window
These links may help to get the exception message displayed : There is a function "getReport" which can be used to get the mess...

más de 4 años hace | 0

Respondida
Unable to lauch classification learner
The issue might be due to some missing files in MATLAB search path. Try restoring MATLAB's default search path by executing th...

más de 4 años hace | 0

Respondida
Error Using fscanf to open file
The file you want to open should be in the same folder that is currently open in MATLAB for your script. You can browse to the f...

alrededor de 5 años hace | 0

Respondida
How to upload a zip file to Matlab?
I think this should work : unzip.

alrededor de 5 años hace | 1

| aceptada

Respondida
how to assign a color to individual bars in a bar chart using a colormap based on a separate series of values?
Check the dimensions of the matrices you are concatenating. Since the vals2colormap returns a 100x3 matrix (considering you want...

alrededor de 5 años hace | 0

Respondida
how to assign a color to individual bars in a bar chart using a colormap based on a separate series of values?
You can change color of a particular bar using FaceColor property of bar graph. I followed this documentation example under Data...

alrededor de 5 años hace | 0

| aceptada

Respondida
Perform Google Search in Matlab
https://www.mathworks.com/help/textanalytics/ref/htmltree.getattribute.html?s_tid=doc_ta I followed the example given on this l...

alrededor de 5 años hace | 0

Respondida
It is possible to export a live script to an interactive webpage?
Check this documentation link. You can export live script as HTML as a static document.

alrededor de 5 años hace | 0

Respondida
HOW TO CONVERT TIME IN NUMERIC FORMAT?
You can use the datetime function of Matlab. Send all the vectors as parameters to the function like this: datetime(yr_vector...

alrededor de 5 años hace | 0

Respondida
deep neural network and cntk
Deep Learning Toolbox can be used for neural networks. Check the documentation : https://www.mathworks.com/help/deeplearning/i...

alrededor de 5 años hace | 0

Respondida
How to find repeated values in a column vector
Try following this approach: Convert vector to string using sprintf. Use regexp to search for repeating 1's. Replace the 1's fo...

alrededor de 5 años hace | 0

| aceptada

Respondida
how to double the data in x axis plot
x = [1000 2000 3000 4000 5000 6000]; plot(x*2,y_name); % y_name is variable name of your y-axis data

alrededor de 5 años hace | 0

| aceptada