Community Profile

photo

Monika Phadnis

Last seen: mehr als ein Jahr vor Aktiv seit 2019

Followers: 0   Following: 0

Statistiken

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

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
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...

mehr als 3 Jahre vor | 1

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

mehr als 3 Jahre vor | 2

| akzeptiert

Beantwortet
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 - ...

mehr als 3 Jahre vor | 0

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

mehr als 3 Jahre vor | 0

Beantwortet
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...

etwa 4 Jahre vor | 0

Beantwortet
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...

etwa 4 Jahre vor | 0

Beantwortet
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...

etwa 4 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 0

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

fast 5 Jahre vor | 1

| akzeptiert

Gelöst


Area of an Isoceles Triangle
An isosceles triangle has equal sides of length x and a base of length y. Find the area, A, of the triangle. <<http://upload...

fast 5 Jahre vor

Gelöst


Quote Doubler
Given a string s1, find all occurrences of the single quote character and replace them with two occurrences of the single quote ...

fast 5 Jahre vor

Gelöst


Balanced number
Given a positive integer find whether it is a balanced number. For a balanced number the sum of first half of digits is equal to...

fast 5 Jahre vor

Gelöst


Too mean-spirited
Find the mean of each consecutive pair of numbers in the input row vector. For example, x=[1 2 3] ----> y = [1.5 2.5] x=[1...

fast 5 Jahre vor

Gelöst


Bottles of beer
Given an input number representing the number of bottles of beer on the wall, output how many are left if you take one down and ...

fast 5 Jahre vor

Gelöst


Find the peak 3n+1 sequence value
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...

fast 5 Jahre vor

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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...

fast 5 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 5 Jahre vor | 0

Beantwortet
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.

fast 5 Jahre vor | 0

Gelöst


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

fast 5 Jahre vor

Gelöst


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

fast 5 Jahre vor

Gelöst


Create a vector
Create a vector from 0 to n by intervals of 2.

fast 5 Jahre vor

Gelöst


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

fast 5 Jahre vor

Gelöst


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

fast 5 Jahre vor

Gelöst


Find max
Find the maximum value of a given vector or matrix.

fast 5 Jahre vor

Gelöst


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

fast 5 Jahre vor

Gelöst


Inner product of two vectors
Find the inner product of two vectors.

fast 5 Jahre vor

Gelöst


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

fast 5 Jahre vor

Gelöst


Find the alphabetic word product
If the input string s is a word like 'hello', then the output word product p is a number based on the correspondence a=1, b=2, ....

fast 5 Jahre vor

Gelöst


Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...

fast 5 Jahre vor

Mehr laden