Community Profile

photo

Mahaveer Singh


Last seen: 거의 3년 전 2021년부터 활동

Followers: 0   Following: 0

THE INNOVATIVE

통계

All
  • 3 Month Streak
  • Commenter
  • First Answer
  • Community Group Solver
  • Solver

배지 보기

Feeds

보기 기준

답변 있음
I want to create a matlab program to perform this operation and show the result in each operation in table
S=0; x(1)=0; % initial value of x. for i=2:1:200 for k=1:1:i-1 S(k)=x(i-k).*f(k); end x(i)=sum(S); end sumation=x

거의 3년 전 | 1

문제를 풀었습니다


Add two numbers
Add two numbers (For beginners)

거의 3년 전

문제를 풀었습니다


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

거의 3년 전

문제를 풀었습니다


Square a Number
Given an input x, return y, which is equal to the square of x.

거의 3년 전

문제를 풀었습니다


What percentage?
Calculate the output c as the percentage of a on b for given a and b.

거의 3년 전

문제를 풀었습니다


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

거의 3년 전

문제를 풀었습니다


multiply by three
Given the variable x as your input, multiply it by 3 and put the result equal to y. Examples: Input x = 2 Output y is ...

거의 3년 전

답변 있음
what is the error with my code
% give the initial value of sum. % like sum=0 (initial vlue of sum) N = 4; x = [ 3 4 5 6 ]; sum=0; for k = 0 : N-1 ...

거의 3년 전 | 0

문제를 풀었습니다


Decimal Comparison
*Background* A utility of particular interest to Cody and other MATLAB ventures is comparing the equality of two numbers. In ...

거의 3년 전

문제를 풀었습니다


Project Euler: Problem 3, Largest prime factor
The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number being input, input might be ui...

거의 3년 전

문제를 풀었습니다


Project Euler: Problem 2, Sum of even Fibonacci
Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 te...

거의 3년 전

문제를 풀었습니다


Project Euler: Problem 1, Multiples of 3 and 5
If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23...

거의 3년 전

질문


During Self-Paced Courses no training task provided in task window.
During Self-Paced Course of Simulink Onramp, I have faced a issue that in the assessment window there is no task provided. I hav...

거의 3년 전 | 답변 수: 0 | 1

0

답변

문제를 풀었습니다


Cell Counting: How Many Draws?
You are given a cell array containing information about a number of soccer games. Each cell contains one of the following: * ...

거의 3년 전

문제를 풀었습니다


Calculate Inner Product
Given two input matrices, |x| and |y|, check if their inner dimensions match. * If they match, create an output variable |z|...

거의 3년 전

답변 있음
help me --> Taylor series cos(x)
% n is required length of series.Give initial value of n as your imagination to speed up of %calculation. function y = mycos(x,...

거의 3년 전 | 0

답변 있음
How to create a Matrix
A=[22:-1:11]; M= reshape(A,4,3)

거의 3년 전 | 1

문제를 풀었습니다


Energy of a photon
*&#9883 &#9762 &#9883 &#9762 &#9883 &#9762 &#9883* Given the frequency F of a photon in giga hertz. Find energy E of this...

거의 3년 전

문제를 풀었습니다


MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9

거의 3년 전

문제를 풀었습니다


MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8

거의 3년 전

문제를 풀었습니다


Area of a disk
Find the area of a disk or circle. x= radius of the disk.

거의 3년 전

문제를 풀었습니다


Volume of a box
Given a box with a length a, width b, and height c. Solve the volume of the box.

거의 3년 전

문제를 풀었습니다


Multiply 2 numbers
Very easy, you just have to multiply 2 numbers but you cannot use the following signs (*, /, - ,^) ,mtimes , times, cross, pro...

거의 3년 전

문제를 풀었습니다


Determine the square root
Determine the square root of the value the user has entered, n.

거의 3년 전

문제를 풀었습니다


Is my wife right?
Regardless of input, output the string 'yes'.

거의 3년 전

문제를 풀었습니다


Electrical Diode Current Calculation
In engineering, there is not always a single equation that describes a phenomenon accurately enough to be applied in all instanc...

거의 3년 전

문제를 풀었습니다


An Ohm's Law Calculator
*BACKGROUND / MOTIVATION:* Many important observations in math and science can be described by short, but powerful, equations...

거의 3년 전

문제를 풀었습니다


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.

거의 3년 전

문제를 풀었습니다


Make a random, non-repeating vector.
This is a basic MATLAB operation. It is for instructional purposes. --- If you want to get a random permutation of integer...

거의 3년 전

문제를 풀었습니다


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

거의 3년 전

더 보기