photo

Hans Scharler

MathWorks

Last seen: Today Aktiv seit 2011

Followers: 14   Following: 4

Nachricht

Community manager, open source program manager, maker, and coffee drinker.

Programming Languages:
Python, C, Javascript, MATLAB, Ruby, HTML, CSS, Arduino, Perl
Professional Interests:
AI for Signals and Images, AI in Predictive Maintenance

Statistik

All
MATLAB Answers

3 Fragen
53 Antworten

File Exchange

2 Dateien

Cody

0 Probleme
16 Lösungen

Blogs

184 Beiträge

ThingSpeak

5 Öffentlich Kanäle

Discussions

30 Discussions

RANG
394
of 300.813

REPUTATION
207

BEITRÄGE
3 Fragen
53 Antworten

ANTWORTZUSTIMMUNG
33.33%

ERHALTENE STIMMEN
79

RANG
7.910 of 21.086

REPUTATION
117

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
2 Dateien

DOWNLOADS
5

ALL TIME DOWNLOADS
1174

RANG
27.986
of 171.169

BEITRÄGE
0 Probleme
16 Lösungen

PUNKTESTAND
186

ANZAHL DER ABZEICHEN
3

BEITRÄGE
184 Beiträge

BEITRÄGE
5 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG
62

BEITRÄGE
30 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES
8

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Flipbook Mini Hack Participant
  • Knowledgeable Level 3
  • Thankful Level 4
  • Promoter
  • Solver
  • First IoT Channel
  • MATLAB Analytics
  • GitHub Submissions Level 1
  • Personal Best Downloads Level 2
  • MATLAB Mini Hack 2022 Participant
  • MATLAB Mini Hack Participant

Abzeichen anzeigen

Feeds

Gelöst


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...

etwa ein Jahr vor

Gelöst


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

etwa ein Jahr vor

Gelöst


Maximum value in a matrix
Find the maximum value in the given matrix. For example, if A = [1 2 3; 4 7 8; 0 9 1]; then the answer is 9.

mehr als 3 Jahre vor

Gelöst


The Piggy Bank Problem
Given a cylindrical piggy bank with radius g and height y, return the bank's volume. [ g is first input argument.] Bonus though...

mehr als 4 Jahre vor

Gelöst


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

mehr als 5 Jahre vor

Gelöst


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

mehr als 5 Jahre vor

Gelöst


Circle area using pi
Given a circle's radius, compute the circle's area. Use the built-in mathematical constant pi.

mehr als 9 Jahre vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

mehr als 9 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

mehr als 9 Jahre vor

Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

mehr als 9 Jahre vor

Gelöst


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.

mehr als 9 Jahre vor

Gelöst


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

mehr als 9 Jahre vor

Gelöst


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

mehr als 9 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

mehr als 9 Jahre vor

Gelöst


The Hitchhiker's Guide to MATLAB
Output logical "true" if the input is the answer to life, the universe and everything. Otherwise, output logical "false".

mehr als 9 Jahre vor

Gelöst


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

mehr als 9 Jahre vor