photo

Anagha Mittal

Active since 2021

Followers: 0   Following: 0

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

Statistics

All
  • First Answer
  • Solver

View badges

Feeds

View by

Answered
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 månader ago | 0

Answered
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 månader ago | 0

Answered
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 månader ago | 1

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

mer än ett år ago | 0

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

ungefär 2 år ago | 0

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

ungefär 2 år ago | 1

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

ungefär 2 år ago | 0

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago

Solved


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

ungefär 3 år ago