photo

Sunil Kumar Giri


Last seen: 6 mois il y a Actif depuis 2019

Followers: 0   Following: 0

Message

Control Engineer by Profession, Aerospace & MATLAB enthusiast by hobby.

Programming Languages:
Python
Spoken Languages:
English

Statistiques

All
MATLAB Answers

7 Questions
1 Réponse

Cody

0 Problèmes
99 Solutions

RANG
12 508
of 300 788

RÉPUTATION
3

CONTRIBUTIONS
7 Questions
1 Réponse

ACCEPTATION DE VOS RÉPONSES
42.86%

VOTES REÇUS
3

RANG
 of 21 091

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
3 937
of 171 083

CONTRIBUTIONS
0 Problèmes
99 Solutions

SCORE
1 060

NOMBRE DE BADGES
3

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Thankful Level 2
  • First Answer
  • Explorer
  • CUP Challenge Master
  • Community Group Solver
  • Solver
  • Thankful Level 1

Afficher les badges

Feeds

Afficher par

Question


Creating a Dropdown menu by listing the variables from model workspace, editing them in UITable element and then saving back to model workspace
Hello Together, I am working on an interactive application using App Designer (MATLAB R2017b). I am doing the following seque...

presque 5 ans il y a | 1 réponse | 0

0

réponse

Question


How to split Simulink.SimulationOutput into its constituent entities
Hello, I am using a variable named ‘simout’ of type Simulink.SimulationOutput which captures all the output variables (using...

environ 5 ans il y a | 1 réponse | 1

1

réponse

Question


How to save the output variables of a MATLAB Script run in App Designer using evalin function into base workspace?
Hello MATLAB Enthusiasts, I want to run a MATLAB Script say 'untitled.m' using inbuilt MATLAB function evalin from MATLAB App...

plus de 5 ans il y a | 1 réponse | 0

1

réponse

Question


How can I bring in the MATLAB App Designer's Workspace variables back into Base Workspace?
Hello MATLAB Enthusiasts, I have made an APP using MATLAB App Designer which does the following operations sequentially as fo...

plus de 5 ans il y a | 1 réponse | 0

0

réponse

A résolu


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

plus de 5 ans il y a

A résolu


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

plus de 5 ans il y a

A résolu


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

plus de 5 ans il y a

A résolu


Calculate BMI
Given a matrix |hw| (height and weight) with two columns, calculate BMI using these formulas: * 1 kilogram = 2.2 pounds * 1 ...

plus de 5 ans il y a

Question


How to find the difference in Amplitude peaks and Phase delays in two up Chirp signals
Hi All, Chirp Signal: A chirp is a signal in which the frequency increases (up-chirp) or decreases (down-chirp) with time. I...

presque 6 ans il y a | 1 réponse | 0

0

réponse

A résolu


Solve a System of Linear Equations
*Example*: If a system of linear equations in _x&#8321_ and _x&#8322_ is: 2 _x₁_ + _x₂_ = 2 _x₁...

presque 6 ans il y a

A résolu


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

presque 6 ans il y a

A résolu


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

presque 6 ans il y a

Réponse apportée
Swap the first and last columns
function B = swap_ends(A) B = A; A(:,1) = A(:,end); A(:,end) = B(:,1); B = A end

presque 6 ans il y a | 0

A résolu


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

presque 6 ans il y a

A résolu


y equals x divided by 2
function y = x/2

plus de 6 ans il y a

A résolu


Find Out sum of principal diagonal element of given matrix
Find out sum of principal diagonal element of given matrix If A=[1 0 0; 0 1 0;0 0 1], then answer must be 3.

plus de 6 ans il y a

A résolu


find radius of cone
if Slant height of Cone(I)& hight of Cone(H) given then find radius of the Cone(R) for example I=5,h=4 then the ans R=3;

plus de 6 ans il y a

A résolu


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

plus de 6 ans il y a

A résolu


Volume Pillar
Calculate the volume of a pillar with radius l and heigth ar.

plus de 6 ans il y a

A résolu


Finding perimeter of a rectangle
A rectangle has a length of x centimeters and a width of w centimeters. Find the perimeter.

plus de 6 ans il y a

A résolu


02 - Vector Variables 1
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_2a.png>>

plus de 6 ans il y a

A résolu


Multiply a column by a row
* Given a column vector C and and a row vector R. * Output a matrix M. * Every column of M equals to C multiplied by correspon...

plus de 6 ans il y a

A résolu


only input
Return the output without writing any code into the function.

plus de 6 ans il y a

A résolu


Multiply by 3
Given the variable x as your input, multiply it by three and put the result in y.

plus de 6 ans il y a

A résolu


Say something funny
Say something funny, or not. Your solution will be (fully automatically and objectively) scored based on how clever or funny ...

plus de 6 ans il y a

A résolu


03 - Matrix Variables 1
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_3a.png>> A 9x9 matrix full of 2's (Hint: use *ones* o...

plus de 6 ans il y a

A résolu


Square the input
Given a scalar or vector x, return the square of each element. Example x = [7 2] answer = [49 4]

plus de 6 ans il y a

A résolu


The sum of the numbers in the vector
eg. [1,2,3]---->SUM=6

plus de 6 ans il y a

A résolu


Calculate square and cube of number
Calculate square and cube of number x

plus de 6 ans il y a

A résolu


03 - Matrix Variables 4
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_3d.png>> A 3x4 NaN (Not a Number) matrix (Hint: use ...

plus de 6 ans il y a

Charger plus