photo

Jan Studnicka


Humusoft s.r.o.

Last seen: Today Actif depuis 2015

Followers: 3   Following: 4

Message

I'm an Application Engineer for Humusoft. Professional Interests: Machine Learning, Data Analytics, Optimization, Parallel Computing

Statistiques

All
MATLAB Answers

0 Questions
21 Réponses

File Exchange

10 Fichiers

Cody

0 Problèmes
28 Solutions

ThingSpeak

1 Public Chaîne

Discussions

4 Points forts

RANG
1 276
of 301 464

RÉPUTATION
58

CONTRIBUTIONS
0 Questions
21 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
15

RANG
6 779 of 21 292

RÉPUTATION
160

CLASSEMENT MOYEN
4.00

CONTRIBUTIONS
10 Fichiers

TÉLÉCHARGEMENTS
12

ALL TIME TÉLÉCHARGEMENTS
790

RANG
18 544
of 174 642

CONTRIBUTIONS
0 Problèmes
28 Solutions

SCORE
303

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
1 Public Chaîne

CLASSEMENT MOYEN
15

CONTRIBUTIONS
4 Points forts

NOMBRE MOYEN DE LIKES
5

  • MATLAB Shorts Mini Hack Participant
  • MATLAB Flipbook Mini Hack Participant
  • Knowledgeable Level 2
  • Revival Level 2
  • Solver
  • GitHub Submissions Level 2
  • Editor's Pick
  • MATLAB Mini Hack 2022 Participant
  • MATLAB Mini Hack Participant
  • Treasure Hunt Participant
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 1

Afficher les badges

Feeds

A soumis


zdroje_pro_vyuku
Zdroje pro výuku různých matematických a fyzikálních konceptů

environ 8 heures il y a | 1 téléchargement |

0.0 / 5

A résolu


Dartboard Average I
A dartboard arranges the numbers 1 to 20 such that each value is typically flanked by quite different values - for example, 20 i...

5 mois il y a

A résolu


Possible Rugby Scores
Given a natural number s (> 4), representing a rugby team's score, return an n-by-3 matrix representing all n possible combinati...

5 mois il y a

A résolu


Split Even Number Into Two Primes
Given an even whole number n (> 2), return a 2-element vector of primes, p, such that p(1) + p(2) = n. The elements of p should ...

5 mois il y a

A résolu


Determine if Input is Oddish or Evenish (Odd/Even Sum of Digits)
Given a positive integer n, determine whether n is "oddish" or "evenish" - that is, whether the sum of the digits of n is odd or...

5 mois il y a

Discussion


MATLAB Plot Gallery web page would deserve an update.
When you compare MATLAB Plot Gallery with matplotlib gallery, you can see that matplotlib gallery contains a lot of nice graphs ...

8 mois il y a | 3

Discussion


str2double --> double
Did you know that function double with string vector input significantly outperforms str2double with the same input: x = rand(1...

8 mois il y a | 8

Discussion


Did you know that you can customize behavior of built-in interactions with callbacks?
I would like to zoom directly on the selected region when using on my image created with image or imagesc. First of all, I woul...

9 mois il y a | 6

A soumis


Vykreslení vejce
Live Script s postupem, jak vykreslit vejce ve 2D a 3D.

environ un an il y a | 3 téléchargements |

0.0 / 5
Thumbnail

Discussion


How to make corrplot from Econometrics Toolbox 2x faster?
Quick answer: Add set(hS,'Color',[0 0.4470 0.7410]) to code line 329 Explanation: Function corrplot uses functions plotmatrix a...

plus de 2 ans il y a | 2

A résolu


Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...

environ 3 ans il y a

Réponse apportée
Do we have possibility to plot geoplot in Simulink?
You can do this in a similar way as described here: https://www.mathworks.com/matlabcentral/answers/232200

environ 3 ans il y a | 1

Réponse apportée
@(T,X)SSMODEL must return a column vector ERROR
The ssmodel function must be defined as described in the documentation: ode45 > Input Arguments > odefun You cannot use symbol...

plus de 3 ans il y a | 1

Réponse apportée
Problem when launching Matlab 2019
Does this help? >> rehash toolboxcache >> restoredefaultpath If so, there is probably an issue ...

plus de 3 ans il y a | 0

Réponse apportée
Importing text file containing numbers and words
data = readtable('soubor.txt','NumHeaderLines',3,'ReadVariableNames',true)

plus de 3 ans il y a | 0

| A accepté

Réponse apportée
MATLAB has encountered an internal problem and needs to close
Try to regenerate your MATLAB preferences: MATLAB Answers: How do I regenerate my MATLAB preferences?

plus de 3 ans il y a | 0

A soumis


Apply LUT to image
Interactively create and apply LUT curve to a black-and-white image.

plus de 3 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A soumis


Prima umernost
Názorná ukázka pro výuku přímé úměrnosti.

plus de 3 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A résolu


Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...

plus de 3 ans il y a

A soumis


Convert Variable Live Task
Interactively convert variable to a different data type in Live Script.

presque 4 ans il y a | 1 téléchargement |

0.0 / 5
Thumbnail

A résolu


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

environ 4 ans il y a

A résolu


Plot Damped Sinusoid
Given two vectors |t| and |y|, make a plot containing a blue ( |b| ) dashed ( |--| ) line of |y| versus |t|. Mark the minimum...

environ 4 ans il y a

A résolu


Calculate a Damped Sinusoid
The equation of a damped sinusoid can be written as |y = A.ⅇ^(-λt)*cos(2πft)| where |A|, |λ|, and |f| ...

environ 4 ans il y a

A résolu


Solve a System of Linear Equations
Example: If a system of linear equations in x₁ and x₂ is: 2x₁ + x₂ = 2 x₁ - 4 x₂ = 3 Then the coefficient matrix (A) is: 2 ...

environ 4 ans il y a

A résolu


Verify Law of Large Numbers
If a large number of fair N-sided dice are rolled, the average of the simulated rolls is likely to be close to the mean of 1,2,....

environ 4 ans il y a

A résolu


Find the Oldest Person in a Room
Given two input vectors: * |name| - user last names * |age| - corresponding age of the person Return the name of the ol...

environ 4 ans il y a

A résolu


Convert from Fahrenheit to Celsius
Given an input vector |F| containing temperature values in Fahrenheit, return an output vector |C| that contains the values in C...

environ 4 ans il y a

A résolu


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

environ 4 ans il y a

A résolu


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

environ 4 ans il y a

A soumis


Map Area Measurement App
Select points of geographical polygon from map to measure its area and perimeter.

environ 4 ans il y a | 2 téléchargements |

0.0 / 5
Thumbnail

Charger plus