photo

Monica


Last seen: 3일 전 2026년부터 활동

Followers: 0   Following: 0

통계

All
MATLAB Answers

0 질문
1 답변

Cody

0 문제
29 답안

순위
42,066
of 302,025

평판
0

참여
0 질문
1 답변

답변 채택
0.00%

획득한 표
0

순위
 of 21,507

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
19,471
of 178,223

참여
0 문제
29 답안

점수
300

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Solver
  • First Answer

배지 보기

Feeds

보기 기준

문제를 풀었습니다


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

3일 전

문제를 풀었습니다


Response of First Order Control Systems
In practice, the input signal to an automatic control system is not known ahead of time but usually random in nature. Thus, in t...

3일 전

문제를 풀었습니다


Find the Best Hotels
Given three input variables: hotels - a list of hotel names ratings - their ratings in a city cutoff - the rating at which yo...

3일 전

문제를 풀었습니다


Crop an Image
A grayscale image is represented as a matrix in MATLAB. Each matrix element represents a pixel in the image. An element value re...

3일 전

문제를 풀었습니다


MATLAB 101: Wye to Delta Impedance Converter
n electrical network analysis, transforming a Wye (Y) configuration of impedances (Z1, Z2, Z3) into an equivalent Delta (Delta) ...

10일 전

문제를 풀었습니다


Calculate supply voltage and total current
Three resistors are connected in series and each has a resistance in ohms. Resistor R2 has a voltage drop of ΔV2volts Find the ...

10일 전

문제를 풀었습니다


Efficiency of a single phase Transformer
Calculate the efficiency of a single phase transformer whose KVA rating is A KVA, loading factor x,power factor p,full load copp...

10일 전

문제를 풀었습니다


Inductor Energy Storage Calculation
The energy (EEE) stored in an inductor is given by the formula: Where: E is the energy in joules (J) L is the inductance in...

10일 전

문제를 풀었습니다


Calculate Parallel Resistance
Three resistors connected in parallel have resistances R1, R 2, and R 3, respectively. Return the total resistance R total of ...

10일 전

문제를 풀었습니다


Resistance in a circuit
Two resistors with values of 6.0 ohms and 12 ohms are connected in parallel. This combination is connected in series with a 4 o...

10일 전

문제를 풀었습니다


Binary Coder
Take an input number and print the binary value of this number.

10일 전

문제를 풀었습니다


Implement full adder circuit
Implement full adder circuit (Full Adder) Inputs signals are a, b and cin. Output signal y = [cout sum]

10일 전

문제를 풀었습니다


Find out sum and carry of Binary adder
Find out sum and carry of a binary adder if previous carry is given with two bits (x and y) for addition. Examples Previo...

10일 전

문제를 풀었습니다


Program an exclusive OR operation with logical operators
Program an exclusive or operation *without* using the MATLAB function xor. Use logical operators like |, &, ~, ... instead. ...

10일 전

문제를 풀었습니다


Write a function to generate AND operation

10일 전

문제를 풀었습니다


Is It a Palindrome?
Given a string or array, determine if it is a palindrome.

10일 전

문제를 풀었습니다


find whether it is prime or not
For a given number find if its prime

10일 전

문제를 풀었습니다


factorial
There are really some cody problems related to factorial of n, e.g., 42667, 45184, 46054, and etc. It is interesting to ask why ...

10일 전

문제를 풀었습니다


Check if number is a square number
Test if integer i is a square number. Return logical true if it is.

10일 전

문제를 풀었습니다


Find the largest number
Find the largest number |x| among 4 numbers given as variables |a|, |b|, |c|, and |d|. Example: Input: a = 4; b = 7; c ...

10일 전

문제를 풀었습니다


Even or Odd
Write a function which can tell us if the given value x is odd or even. So if x is even return true and if x is odd return false...

10일 전

문제를 풀었습니다


Add the odd numbers
Add only the odd numbers of x example: x = [1 2 3 4 5] the positive numbers are: 1 3 5, so their sum is 9

10일 전

문제를 풀었습니다


Divisible by 5
Pursuant to the first problem in this series, this one involves checking for divisibility by 5. Write a function to determine i...

10일 전

문제를 풀었습니다


Area of square
Find the area of a square whose diagonal length is given as x.

10일 전

문제를 풀었습니다


Calculate the square of a number (Super Easy)
The goal is to calculate the square (y) of a number (x). Good way to start MatLab for beginners.

10일 전

문제를 풀었습니다


Matlab Basics - Pick out parts of a vector
Consider x a vector of length >= 7 (there are at least 7 elements in the vector, write a script that extracts the 2nd element, a...

대략 1개월 전

문제를 풀었습니다


Sum all elements of a vector or matrix without using sum()
Write a function that computes the sum of all elements of the input array v without using the built-in sum function. The input ...

대략 1개월 전

문제를 풀었습니다


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

대략 1개월 전

문제를 풀었습니다


Return the Square of a Number
Write a function that takes a single numeric input x and returns its square. That is, given x, your function should output x^2....

대략 1개월 전

답변 있음
Write a MATLAB function that returns the square of a number.
function sqr=sqr(x) sqr=x^2; end

대략 1개월 전 | 0