RAGHUNATHRAJU DASHARATHA
Followers: 0 Following: 0
Feeds
답변 있음
Remove or turn-off interdigitalCapacitor under-side conductor.
As per my understanding you want to remove or turn off the ground plane from the interdigitalCapacitor.For any catalog element ...
Remove or turn-off interdigitalCapacitor under-side conductor.
As per my understanding you want to remove or turn off the ground plane from the interdigitalCapacitor.For any catalog element ...
거의 2년 전 | 0
답변 있음
How can I calculate the sample mean and sample variance
A per my understanding you want to calculate mean and variance for each column and whole matrix. I'll demonstrate it using belo...
How can I calculate the sample mean and sample variance
A per my understanding you want to calculate mean and variance for each column and whole matrix. I'll demonstrate it using belo...
거의 2년 전 | 1
| 수락됨
문제를 풀었습니다
Find nth maximum
Find nth maximum in a vector of integer numbers. Return NaN if no such number exists. x = [2 6 4 9 -10 3 1 5 -10]; So ...
대략 2년 전
문제를 풀었습니다
Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
For a row vector: V=[7 1 2 -3] there is one sign change (from 2 to -3). So, the function you write must return N=1. F...
대략 2년 전
문제를 풀었습니다
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...
대략 2년 전
문제를 풀었습니다
Chess probability
The difference in the ratings between two players serves as a predictor of the outcome of a match (the <http://en.wikipedia.org/...
대략 2년 전
답변 있음
Tick marks on primary x and y axes
As per my understanding you want to remove tick marks on top x axis and right y axis . I will try to demonstrate using the belo...
Tick marks on primary x and y axes
As per my understanding you want to remove tick marks on top x axis and right y axis . I will try to demonstrate using the belo...
대략 2년 전 | 0
| 수락됨
답변 있음
Why does my else doesnt work?
As per my understanding you are using conditional statement if-else to get your output but unable to do it because in else cond...
Why does my else doesnt work?
As per my understanding you are using conditional statement if-else to get your output but unable to do it because in else cond...
대략 2년 전 | 1
답변 있음
Plot five y axis for one x axis in single plot?
As per my understanding you want to plot multiple y-axis for single x-axis in a plot You can try a function from the file excha...
Plot five y axis for one x axis in single plot?
As per my understanding you want to plot multiple y-axis for single x-axis in a plot You can try a function from the file excha...
대략 2년 전 | 0
문제를 풀었습니다
Calculate BMI
Given a matrix |hw| (height and weight) with two columns, calculate BMI using these formulas: * 1 kilogram = 2.2 pounds * 1 ...
대략 2년 전
문제를 풀었습니다
Plot Damped Sinusoid
Given two vectors |t| and |y|, make a plot containing a blue ( |b| ) dashed ( |--| ) line of |y| versus |t|. Mark the minimum...
대략 2년 전
문제를 풀었습니다
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...
대략 2년 전
문제를 풀었습니다
Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...
대략 2년 전
문제를 풀었습니다
Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...
대략 2년 전
문제를 풀었습니다
Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...
대략 2년 전
문제를 풀었습니다
Create times-tables
At one time or another, we all had to memorize boring times tables. 5 times 5 is 25. 5 times 6 is 30. 12 times 12 is way more th...
대략 2년 전
문제를 풀었습니다
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.
대략 2년 전
문제를 풀었습니다
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...
대략 2년 전
문제를 풀었습니다
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...
대략 2년 전
답변 있음
how to plot this
As per my understanding you want to plot x and y but you are unable to do that beacuse you are not using element wise operations...
how to plot this
As per my understanding you want to plot x and y but you are unable to do that beacuse you are not using element wise operations...
대략 2년 전 | 0
답변 있음
Table column of strings to a matrix.
As per my understanding you want to get a matrix from the string array I will demonstarte it using the example below A=["[0 0 ...
Table column of strings to a matrix.
As per my understanding you want to get a matrix from the string array I will demonstarte it using the example below A=["[0 0 ...
대략 2년 전 | 2
답변 있음
I want to put a column of information back into an excel sheet
A per my understanding you want to add a new column of information back to the excel sheet. you can add the following lines of ...
I want to put a column of information back into an excel sheet
A per my understanding you want to add a new column of information back to the excel sheet. you can add the following lines of ...
대략 2년 전 | 0
| 수락됨
답변 있음
put it in a function
As per my understanding you want to write your code into a function . I will be demonstrating it using your code as example bel...
put it in a function
As per my understanding you want to write your code into a function . I will be demonstrating it using your code as example bel...
대략 2년 전 | 0
답변 있음
Get data from table to editfield
As per my understanding you want to get minimum value from 2nd and 3rd column of your data. I assume you have converted your ta...
Get data from table to editfield
As per my understanding you want to get minimum value from 2nd and 3rd column of your data. I assume you have converted your ta...
대략 2년 전 | 0
문제를 풀었습니다
Calculate Inner Product
Given two input matrices, |x| and |y|, check if their inner dimensions match. * If they match, create an output variable |z|...
대략 2년 전
문제를 풀었습니다
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...
대략 2년 전
문제를 풀었습니다
Find the Best Hotels
Given three input variables: * |hotels| - a list of hotel names * |ratings| - their ratings in a city * |cutoff| - the rat...
대략 2년 전
문제를 풀었습니다
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...
대략 2년 전
답변 있음
surface and volume charge
A per my understanding you want to know how Matlab used the columbs law to calculate the electric fields. You can refer to the ...
surface and volume charge
A per my understanding you want to know how Matlab used the columbs law to calculate the electric fields. You can refer to the ...
대략 2년 전 | 0