photo

Anagha Mittal

2021년부터 활동

Followers: 0   Following: 0

Any advice or opinions posted here are my own, and in no way reflect that of MathWorks.

통계학

All
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
Simulate two event-driven tasks using Task Manager to execute 2 function-call subsystems - SoC Blockset
Hi Carlos, Using SoC Blockset's Task Manager to simulate event-driven tasks that trigger the execution of independent functi...

10개월 전 | 0

답변 있음
Provide Corrected nodal point formulas for 2D Transient with convection boundaries
Hi Viswa, The code mostly seems correct and should work as per the desired result. However, please note the following modific...

10개월 전 | 0

답변 있음
How do I configure an application load balancer for MATLAB Production Server Helm deployment?
Hi Marc! Please follow the below mentioned steps to set up the ingress for an already established ALB (application load balance...

10개월 전 | 1

답변 있음
Stopping the Simulink Test Manager execution
Hi Szilard, You can give an "if" condition in your script for test failure and stop or close the Test Manager using the comman...

1년 초과 전 | 0

답변 있음
what the difference between the phase of f(z) and |f(z)|
Hi! The difference between f(z) and |f(z)| is that the former has all the actual values of the complex function while the latte...

대략 2년 전 | 0

답변 있음
Hello , I am new to Matlab and I want Compute the harmonic contents and THD for the voltage waveform shown in the attached file with The sample rate of the signal is 32 /cycle
Hi! MATLAB provides a direct function named thd to compute the total harmonic distortion of any signal. You may create a vect...

대략 2년 전 | 1

답변 있음
x-y-Coordinates given in *.mat-file - Find max and min. values and assign parametername
Hi! This code will help in getting the maximum and minimum value of X and Y coordinates: m = matfile('positions.mat'); pos = ...

대략 2년 전 | 0

문제를 풀었습니다


QWERTY coordinates
Given a lowercase letter or a digit as input, return the row where that letter appears on a standard U.S. QWERTY keyboard and it...

대략 3년 전

문제를 풀었습니다


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

대략 3년 전

문제를 풀었습니다


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

대략 3년 전

문제를 풀었습니다


De-dupe
Remove all the redundant elements in a vector, but keep the first occurrence of each value in its original location. So if a =...

대략 3년 전

문제를 풀었습니다


Sort a list of complex numbers based on far they are from the origin.
Given a list of complex numbers z, return a list zSorted such that the numbers that are farthest from the origin (0+0i) appear f...

대략 3년 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

대략 3년 전

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

대략 3년 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

대략 3년 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

대략 3년 전

문제를 풀었습니다


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

대략 3년 전

문제를 풀었습니다


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

대략 3년 전

문제를 풀었습니다


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

대략 3년 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

대략 3년 전

문제를 풀었습니다


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

대략 3년 전

문제를 풀었습니다


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

대략 3년 전

문제를 풀었습니다


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

대략 3년 전

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

대략 3년 전