Pavel Roslovets - MATLAB Central
photo

Pavel Roslovets


inzhenerka.tech

Last seen: bijna 2 jaar ago Active since 2016

Followers: 0   Following: 0

Message
Programming Languages:
Python, C++, C, Javascript, MATLAB, SQL, HTML, CSS, Arduino, Shell
Spoken Languages:
English, Russian

Statistics

All
CodyFile ExchangeThingSpeakMATLAB AnswersFrom 01/16 to 03/25Use left and right arrows to move selectionFrom 01/16Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

1 Question
2 Answers

File Exchange

16 Files

Cody

0 Problems
22 Solutions

ThingSpeak

4 Public Channels

RANK
22.301
of 297.503

REPUTATION
2

CONTRIBUTIONS
1 Question
2 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
1

RANK
815 of 20.449

REPUTATION
2.267

AVERAGE RATING
5.00

CONTRIBUTIONS
16 Files

DOWNLOADS
88

ALL TIME DOWNLOADS
19598

RANK
21.065
of 159.017

CONTRIBUTIONS
0 Problems
22 Solutions

SCORE
230

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
4 Public Channels

AVERAGE RATING
40

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 1
  • 5-Star Galaxy Level 5
  • Personal Best Downloads Level 4
  • Editor's Pick
  • First Review
  • GitHub Submissions Level 3
  • First Submission
  • Revival Level 1
  • First Answer
  • Scavenger Finisher
  • Solver

View badges

Feeds

Submitted


Live Script To Markdown Converter
Easily convert live scripts to markdown files

8 maanden ago | 6 downloads |

5.0 / 5
Thumbnail

Submitted


COVID-19 Propagation Simulator (Simulink)
Virus propagation simulator in MATLAB/Simulink

8 maanden ago | 2 downloads |

5.0 / 5
Thumbnail

Submitted


Icons (for App Designer, Simulink, presentations, etc.)
Hi-res professional icons for use in MATLAB, Simulink, presentations, web, etc.

meer dan een jaar ago | 16 downloads |

5.0 / 5
Thumbnail

Submitted


Toolbox Extender
Extends built-in MATLAB capabilities of toolbox creating

meer dan een jaar ago | 1 download |

0.0 / 5
Thumbnail

Submitted


App Designer Pro Toolbox
UI library for professional apps building

meer dan een jaar ago | 6 downloads |

4.8 / 5
Thumbnail

Submitted


matlab-dotenv
Load environment variables from .env file

bijna 3 jaar ago | 1 download |

0.0 / 5
Thumbnail

Submitted


MATLAB WEB API (connect to WEB services using OAuth 1.0/2.0)
Work with WEB services directly from MATLAB

bijna 4 jaar ago | 5 downloads |

5.0 / 5
Thumbnail

Submitted


Arduino Additional Sensors Library (DHT, LPS331)
Simulink blocks for DHT and LPS331 sensors

bijna 4 jaar ago | 19 downloads |

5.0 / 5
Thumbnail

Question


How to contact File Exhange Admin to restore deleted submission?
Hi! I've deleted my submission occasionally: https://www.mathworks.com/matlabcentral/fileexchange/89516 Now I can't to create ...

bijna 4 jaar ago | 1 answer | 0

1

answer

Submitted


App Designer Password Edit Field
Insert protected password field to your App Designer App

ongeveer 4 jaar ago | 5 downloads |

0.0 / 5
Thumbnail

Submitted


GraphQL Client
Connect to GraphQL API form MATLAB

meer dan 4 jaar ago | 1 download |

0.0 / 5
Thumbnail

Submitted


Exponenta Toolbox (Materials for Russian-speaking users)
Быстрый доступ к русскоязычным материалам по MATLAB и ресурсам ЦИТМ "Экспонента" --- Quick access to Russian-language MATLAB mat...

meer dan 5 jaar ago | 1 download |

0.0 / 5
Thumbnail

Submitted


Gyroboy - self-balancing two-wheel robot based on Lego EV3
Model of EV3 segway robot with LQR controller. Could be run on hardware (EV3)

meer dan 5 jaar ago | 8 downloads |

5.0 / 5
Thumbnail

Submitted


App Designer: Instrument Control over Serial (Arduino)
Control Arduino RGB LED over serial using MATLAB App Designer

meer dan 5 jaar ago | 12 downloads |

5.0 / 5
Thumbnail

Solved


Replicate elements in vectors
Replicate each element of a row vector (with NaN) a constant number of times. Examples n=2, A=[1 2 3] -> [1 1 2 2 3 3] ...

ongeveer 7 jaar ago

Solved


Set the array elements whose value is 13 to 0
Input A either an array or a vector (which can be empty) Output B will be the same size as A . All elements of A equal to 13...

ongeveer 7 jaar ago

Solved


Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value. Example >> A = 1:9; >> A = reshape(A,[3 1 3]); >> islargest(A) a...

ongeveer 7 jaar ago

Solved


Check if number exists in vector
Return 1 if number _a_ exists in vector _b_ otherwise return 0. a = 3; b = [1,2,4]; Returns 0. a = 3; b = [1,...

ongeveer 7 jaar ago

Submitted


Fidget Spinner 3DOF Gyro (Simscape Multibody)
3DOF gyro psysical model of fidger spinner

ongeveer 7 jaar ago | 1 download |

5.0 / 5
Thumbnail

Solved


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

meer dan 7 jaar ago

Solved


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

meer dan 7 jaar ago

Submitted


LEGO EV3 Spinner Speedometer (Stateflow)
Measure spinner speed with LEGO EV3 and Stateflow

meer dan 7 jaar ago | 1 download |

0.0 / 5
Thumbnail

Solved


Count number of words in string
Count number of words in string Examples 'hi', answer is 1 'hi hi', answer is 2 'I enjoy cody', answer is 3

meer dan 7 jaar ago

Channel


Telegram_bot

bijna 8 jaar ago

Submitted


Arduino Weather Station IoT (ThingSpeak)
Standalone Arduino Weather Station that's uploading data directly to ThingSpeak

bijna 8 jaar ago | 1 download |

0.0 / 5
Thumbnail

Channel


Weather 3 hour forecast - Moscow
Moscow Weather forecast for 3 hours from openweathermap.org

bijna 8 jaar ago

Channel


Weather_daily
Daily average values

bijna 8 jaar ago

Solved


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.

ongeveer 8 jaar ago

Solved


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

ongeveer 8 jaar ago

Solved


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

ongeveer 8 jaar ago

Load more