photo

Claudio Gelmi


Data Scientist

Last seen: etwa ein Monat vor Aktiv seit 2009

Followers: 0   Following: 0

Nachricht

Lifelong learner. Professional Interests: Modeling and simulation in chemical engineering; optimization; statistical analysis; data science.

Statistik

All
MATLAB Answers

0 Fragen
5 Antworten

File Exchange

1 Datei

Cody

14 Probleme
1153 Lösungen

RANG
5.501
of 301.603

REPUTATION
8

BEITRÄGE
0 Fragen
5 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
3

RANG
2.248 of 21.350

REPUTATION
798

DURCHSCHNITTLICHE BEWERTUNG
4.30

BEITRÄGE
1 Datei

DOWNLOADS
4

ALL TIME DOWNLOADS
7840

RANG
135
of 175.723

BEITRÄGE
14 Probleme
1153 Lösungen

PUNKTESTAND
10.400

ANZAHL DER ABZEICHEN
16

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Revival Level 1
  • First Answer
  • Cody Challenge Master
  • Famous
  • Explorer
  • Personal Best Downloads Level 2
  • First Review
  • 5-Star Galaxy Level 4
  • First Submission
  • Project Euler I
  • CUP Challenge Master
  • ASEE Challenge Master

Abzeichen anzeigen

Feeds

Anzeigen nach

Gelöst


ベクトルのスケーリング
入力したベクトルの大きさを1にしてください。

mehr als 7 Jahre vor

Beantwortet
Solving of integro-differential equation
Hi, try using this solver developed in MATLAB: "IDSOLVER: A general purpose solver for nth-order integro-differential equatio...

mehr als 9 Jahre vor | 1

Beantwortet
integro-differential equation?
Take a look at this MATLAB solver: "IDSOLVER: A general purpose solver for nth-order integro-differential equations": http:/...

mehr als 9 Jahre vor | 0

Beantwortet
Solving an Integro-differential equation numerically
Take a look at this solver: "IDSOLVER: A general purpose solver for nth-order integro-differential equations": http://dx.doi....

mehr als 9 Jahre vor | 1

Beantwortet
I need to solve an integro differential equation in Matlab
Take a look at this solver: "IDSOLVER: A general purpose solver for nth-order integro-differential equations": http://dx.doi....

mehr als 9 Jahre vor | 0

Beantwortet
Solving Integro-differential equation with limited integral
Take a look at this solver: Article "IDSOLVER: A general purpose solver for nth-order integro-differential equations": http:...

mehr als 9 Jahre vor | 1

Gelöst


Palindrome Check
Check whether the entire matrix is palindrome or not. Example matrix = [7 8 7] matrix_reverse = [7 8 7] So the mat...

fast 10 Jahre vor

Gelöst


construct matrix with identical rows
Input a row vector such as x=1:10. Now we need to construct a matrix with L rows,of which every row vector is a copy of x. E...

fast 10 Jahre vor

Gelöst


Half-Swap
Given a vector with an even number of elements, rearrange it so that the elements in its first half are switched with those i...

fast 10 Jahre vor

Gelöst


Prime checker
Complete the recursive function to determine if a number is prime. Skeletal code is provided in the PrimeChecker function.

fast 10 Jahre vor

Gelöst


Health app
A health app records a user's weight and displays the change in weight from the previous measurement to the next. Assign weightC...

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Gelöst


Matlab Basics II - Minimum
Write a function that returns the minimum of each ROW of a matrix x example: x = [1 2 3; 4 5 6]; output [1;4];

fast 10 Jahre vor

Gelöst


Travel speed
Write an anonymous function to compute the Euclidean distance given two points (x1, y1) and (x2, y2). Use the following equation...

fast 10 Jahre vor

Gelöst


Luggage delivery
Assign deliveryCost with the cost to deliver a piece of baggage weighing baggageWeight. The service charges twenty dollars for ...

fast 10 Jahre vor

Gelöst


Currency conversion
A currency exchange booth offers an exchange rate of 119.771 Japanese yen for 1 US dollar. The currency exchange booth rounds do...

fast 10 Jahre vor

Gelöst


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

fast 10 Jahre vor

Gelöst


Determine the mean of matrix
Determine the mean of matrix without using mean function Hint: use simple algorithm

fast 10 Jahre vor

Gelöst


Compute change
A cashier distributes change using the maximum number of five dollar bills, followed by one dollar bills. Given amountToChange, ...

fast 10 Jahre vor

Gelöst


Matlab Basics - Rounding III
Write a script to round a large number to the nearest 10,000 e.g. x = 12,358,466,243 --> y = 12,358,470,000

fast 10 Jahre vor

Gelöst


Finding values in arrays
Assign numMatches with the number of elements in userValues that equal matchValue. Ex: If matchValue = 2 and userVals = [2, ...

fast 10 Jahre vor

Gelöst


2倍してみよう - ここからスタート!
初めにこの問題を試してみよう。 入力としてxを与え、それを2倍して結果をyに代入せよ。 Examples: Input x = 2 Output y is 4 Input x = 17 Output y is 34 ...

fast 10 Jahre vor

Gelöst


Matlab Basics II - Intervals
Write a function that takes an interval from a to b, and divides it into 5 parts example: a = 1, b = 2 output = 1 1.25 ...

fast 10 Jahre vor

Gelöst


Populating an array with a for loop
Write a for loop to populate multiplicationTable with the multiples of baseValue from 0 to 5. Ex: If baseValue is 2, then mu...

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Gelöst


Make an N-dimensional Multiplication Table
*INSTRUCTIONS* This is a multi-dimensional variant of the normal multiplication table used to teach elementary students multi...

fast 10 Jahre vor

Gelöst


Free passes for everyone!
_Simply return the name of the coolest numerical computation software ever_ *Extra reward* (get a _freepass_): As an addit...

fast 10 Jahre vor

Gelöst


Matlab Basics II - Free Fall
An object freely falling from rest under gravity covers a distance x given by: x = 1/2 gt^2 write a function that calculat...

fast 10 Jahre vor

Gelöst


Writing a recursive math function
Complete the recursive function RaiseToPower(). Ex: If userBase is 2 and userExponent is 4, then raisedValue is assigned wit...

fast 10 Jahre vor

Gelöst


Number of pennies
Complete the function ConvertToPennies() so that the function returns the total number of pennies given a number of dollars and ...

fast 10 Jahre vor

Mehr laden