photo

Frantisek Brazdik


Czech National Bank

Last seen: 7 jours il y a Actif depuis 2015

Followers: 0   Following: 0

Message

Macroeconomic modeler

Programming Languages:
Python, R, MATLAB, SQL, Fortran
Spoken Languages:
English, German

Statistiques

All
MATLAB Answers

2 Questions
3 Réponses

Cody

0 Problèmes
17 Solutions

RANG
38 564
of 300 886

RÉPUTATION
1

CONTRIBUTIONS
2 Questions
3 Réponses

ACCEPTATION DE VOS RÉPONSES
50.0%

VOTES REÇUS
2

RANG
 of 21 104

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
29 256
of 171 502

CONTRIBUTIONS
0 Problèmes
17 Solutions

SCORE
172

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • MATLAB Central Treasure Hunt Finisher
  • First Answer
  • Revival Level 1
  • First Review
  • Scavenger Finisher
  • Solver

Afficher les badges

Feeds

Afficher par

Question


How to stop Matlab service host from connecting to internet?
I would like to setup my matlab installation on local machine (no access to internet, no installation by user permitted) so that...

environ un mois il y a | 1 réponse | 0

0

réponse

Réponse apportée
How to disable installing INSTALLMATHWORKSSERVICEHOST.EXE?
It seems that some new tools are released: https://github.com/mathworks-ref-arch/administer-mathworks-service-host Seems there...

2 mois il y a | 0

Réponse apportée
How to disable installing INSTALLMATHWORKSSERVICEHOST.EXE?
My actual workaround is to get rid of the file \R2024a\sys\mwds\win64\mci.zip from the installation.

plus d'un an il y a | 1

| A accepté

Question


How to disable installing INSTALLMATHWORKSSERVICEHOST.EXE?
I am running Matlab installation in restricted institutional environment under network licence. At the start of Matlab 2024a, up...

plus d'un an il y a | 3 réponses | 1

3

réponses

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

plus de 3 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 you n...

plus de 3 ans il y a

Réponse apportée
How to convert monthly data to quarterly using IRIS toolbox?
Use function convert m_ts = tseries(mm(1990,1):mm(2020,12),rand(1,372)); q_ts = convert(m_ts,'q') convert accepts parameter...

presque 5 ans il y a | 0

A résolu


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

plus de 9 ans il y a

A résolu


Remove any row in which a NaN appears
Given the matrix A, return B in which all the rows that have one or more <http://www.mathworks.com/help/techdoc/ref/nan.html NaN...

plus de 10 ans il y a

A résolu


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

plus de 10 ans il y a

A résolu


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

plus de 10 ans il y a

A résolu


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


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

plus de 10 ans il y a

A résolu


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

presque 11 ans il y a

A résolu


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

presque 11 ans il y a

A résolu


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

presque 11 ans il y a

A résolu


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

presque 11 ans il y a

A résolu


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

presque 11 ans il y a

A résolu


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

presque 11 ans il y a

A résolu


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

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

presque 11 ans il y a