Community Profile

photo

Lexi Crommett

MathWorks

Last seen: ein Tag vor Aktiv seit 2020

I am a User Experience Researcher at MathWorks. My responsibilities include understanding how people use MathWorks products and testing new features with users to ensure usability. I primarily support the Instrument Control Toolbox, Vehicle Network Toolbox, Data Acquisition Toolbox, Image Acquisition Toolbox, and Hardware teams.

Statistiken

All
  • Knowledgeable Level 1
  • First Answer
  • Revival Level 1
  • Solver

Abzeichen anzeigen

Content Feed

Anzeigen nach

Gelöst


Find relatively common elements in matrix rows
You want to find all elements that exist in greater than 50% of the rows in the matrix. For example, given A = 1 2 3 5 ...

mehr als 2 Jahre vor

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

mehr als 2 Jahre vor

Beantwortet
Call Matlab script via command line
You can use the -logfile "logfilename" startup option to write any output from MATLAB to a log file. This should allow you to se...

fast 3 Jahre vor | 0

Beantwortet
Reading only latest data over TCP/IP/UDP with Instrument Control Toolbox
Hello Matej, It sounds like your goal is to read only the latest data, not necessarily the data in the order it was received. Y...

fast 3 Jahre vor | 0

| akzeptiert

Gelöst


Longest run of consecutive numbers
Given a vector a, find the number(s) that is/are repeated consecutively most often. For example, if you have a = [1 2 2 2 1 ...

mehr als 3 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 ...

mehr als 3 Jahre vor

Gelöst


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

mehr als 3 Jahre vor

Gelöst


Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor

Gelöst


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

fast 4 Jahre vor

Gelöst


Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<http://upload....

fast 4 Jahre vor

Gelöst


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

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

fast 4 Jahre vor

Gelöst


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

fast 4 Jahre vor