Community Profile

photo

NAVNEET NAYAN


Last seen: 2 giorni fa Attivo dal 2016

Statistiche

All
  • Knowledgeable Level 2
  • Community Group Solver
  • Commenter
  • Thankful Level 4
  • First Review
  • Solver
  • Revival Level 1
  • First Answer

Visualizza badge

Content Feed

Visto da

Domanda


Conversion of Categorical to char while maintaining same dimension
I have a variable having dimension m-by-3. It's datatype is categorical. I am trying to convert it to char datatype while mainta...

19 giorni fa | 1 risposta | 0

1

risposta

Domanda


Extract part from an RGB image based on the obtained pixel locations.
I had an RGB image and I converted this to a binary image. Then, I got desired pixel locations from a binary image. I want to ex...

6 mesi fa | 1 risposta | 0

1

risposta

Risolto


Find the sides of an isosceles triangle when given its area and height from its base to apex
Find the sides of an isosceles triangle when given its area and the height from its base to apex. For example, with A=12 and h=...

7 mesi fa

Risolto


Rounding off numbers to n decimals
Inspired by a mistake in one of the problems I created, I created this problem where you have to round off a floating point numb...

7 mesi fa

Risposto
How to sorten the result value depicted on text area
you can use "round" function. See it's documentation (https://in.mathworks.com/help/releases/R2022b/matlab/ref/round.html?s_ti...

7 mesi fa | 0

| accettato

Risposto
Concatenating vectors of different length
You have to change the size of first 4 vectors obtained in the first 4 iterations according to the size of vector 5. t1=ones(1...

7 mesi fa | 1

Domanda


MATLAB standalone App not working when installed on another system
I designed a MATLAB App using MATLAB App Designer. My app plays videos corresponding to the given words. It works fine. Next, us...

7 mesi fa | 1 risposta | 0

1

risposta

Domanda


Stop opening a figure window while using uiwait to pause a playing video in app designer
In my developed GUI, videos corresponding to alphabets are playing. I wanted to pause and resume those videos using push button....

7 mesi fa | 1 risposta | 0

1

risposta

Risolto


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. <<https://imgur...

7 mesi fa

Risolto


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

7 mesi fa

Risolto


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

7 mesi fa

Risolto


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

7 mesi fa

Risolto


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

7 mesi fa

Domanda


How to display space Key in MATLAB App Designer
I have made a basic GUI that displays videos of alphabets. It's basic look is attached here named as GUI_MATLAB. I am facing a p...

7 mesi fa | 1 risposta | 0

1

risposta

Risolto


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

7 mesi fa

Risolto


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

7 mesi fa

Risolto


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

7 mesi fa

Risolto


Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.

7 mesi fa

Risolto


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

7 mesi fa

Risolto


Calculate Amount of Cake Frosting
Given two input variables r and h, which stand for the radius and height of a cake, calculate the surface area of the cake you n...

7 mesi fa

Risolto


Convert from Fahrenheit to Celsius
Given an input vector F containing temperature values in Fahrenheit, return an output vector C that contains the values in Celsi...

7 mesi fa

Risolto


Convert radians to degrees
Given input in radians, output to degrees

7 mesi fa

Risolto


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

7 mesi fa

Risolto


Perimeter of a semicircle
Given the diameter d, find the perimeter of a semicircle

7 mesi fa

Risolto


Dimensions of a rectangle
The longer side of a rectangle is three times the length of the shorter side. If the length of the diagonal is x, find the width...

7 mesi fa

Risolto


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<https://i.imgur.com/jlZDHhq.png>> Image courtesy of <http://up...

7 mesi fa

Risolto


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

7 mesi fa

Risolto


Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<https://imgur.com/x6hT6mm.png>> ...

7 mesi fa

Risolto


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

7 mesi fa

Risolto


Getting the indices from a vector
This is a basic MATLAB operation. It is for instructional purposes. --- You may already know how to <http://www.mathworks....

7 mesi fa

Carica altro