photo

Josh


Last seen: oltre un anno fa Attivo dal 2025

Followers: 0   Following: 0

Statistica

Cody

0 Problemi
92 Soluzioni

RANK
N/A
of 302.031

REPUTAZIONE
N/A

CONTRIBUTI
0 Domande
0 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
0

RANK
 of 21.508

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
4.148
of 178.295

CONTRIBUTI
0 Problemi
92 Soluzioni

PUNTEGGIO
1.060

NUMERO DI BADGE
3

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver

Visualizza badge

Feeds

Visto da

Risolto


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

oltre un anno fa

Risolto


Find the max element of the array
Find the max element of the array

oltre un anno fa

Risolto


Area of an equilateral triangle
Calculate the area of an equilateral triangle of side x. <<https://i.imgur.com/jlZDHhq.png>> Image courtesy of <http://up...

oltre un anno fa

Risolto


Divide by 4
Given the variable x as your input, divide it by four and put the result in y.

oltre un anno fa

Risolto


Division
Given two numbers a and b divide them a/b

oltre un anno fa

Risolto


Prime Number
Determine if a number is prime

oltre un anno fa

Risolto


Mode
Find the mode of a vector x

oltre un anno fa

Risolto


Remainder
Given two number a and b find the remainder when you divide a by b

oltre un anno fa

Risolto


Multiplication
Given 2 numbers a and b mulitply them

oltre un anno fa

Risolto


Subtraction
Given two numbers a and b subtract them

oltre un anno fa

Risolto


Add two numbers
Given two numbers a and b add them together

oltre un anno fa

Risolto


Given a square and a circle, please decide whether the square covers more area.
You know the side of a square and the diameter of a circle, please decide whether the square covers more area.

oltre un anno fa

Risolto


Volume Pillar
Calculate the volume of a pillar with radius l and heigth ar.

oltre un anno fa

Risolto


Rotate a Matrix
Input a Matrix x, Output y is the matrix rotating x 90 degrees clockwise

oltre un anno fa

Risolto


Given area find sides
In a right angle triangle given area 'A' one arm=x, another arm=2x then find the value of x. For example, area A=400 then ...

oltre un anno fa

Risolto


Factorial Numbers
Factorial is multiplication of integers. So factorial of 6 is 720 = 1 * 2 * 3 * 4* 5 *6 Thus 6 factorial = factorial(720)....

oltre un anno fa

Risolto


Mode
Find the mode of the vector Assumption: no vector is bimodal Example 1: input=[1 2 3 4 4]; output=4 Example 2: input=[7...

oltre un anno fa

Risolto


Reverse a matrix
Its simple. You have to reverse a given matrix.

oltre un anno fa

Risolto


Arrange vector in ascending order
Arrange a given vector in ascending order. input = [4 5 1 2 9]; output = [1 2 4 5 9];

oltre un anno fa

Risolto


Roots
Find out the roots of a given polynomial equation.Given are the coefficients of the equation.

oltre un anno fa

Risolto


Derivative of polynomial
Compute the derivative of a given polynomial. The input is an <http://www.mathworks.com/help/matlab/math/representing-polynomial...

oltre un anno fa

Risolto


Matlab Basics - Absolute Value
Write a script that returns the absolute value of the elements in x e.g. x = [-1 -2 -3 -4] --> y = [1 2 3 4]

oltre un anno fa

Risolto


Return area of square
Side of square=input=a Area=output=b

oltre un anno fa

Risolto


Find max
Find the maximum value of a given vector or matrix.

oltre un anno fa

Risolto


Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<https://i.imgur.com/jlZDHhq.png>> ...

oltre un anno fa

Risolto


Min of a Matrix
Return the minimum value in the given matrix.

oltre un anno fa

Risolto


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

oltre un anno fa

Risolto


Create a Matrix of Zeros
Given an input x, create a square matrix y of zeros with x rows and x columns.

oltre un anno fa

Risolto


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

oltre un anno fa

Risolto


Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...

oltre un anno fa

Carica altro