photo

Paul


Last seen: 6 månader ago Active since 2023

Followers: 0   Following: 0

Statistics

All
MATLAB Answers

7 Questions
0 Answers

Cody

0 Problems
20 Solutions

RANK
132 427
of 300 365

REPUTATION
0

CONTRIBUTIONS
7 Questions
0 Answers

ANSWER ACCEPTANCE
71.43%

VOTES RECEIVED
0

RANK
 of 20 933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
22 755
of 168 262

CONTRIBUTIONS
0 Problems
20 Solutions

SCORE
224

NUMBER OF BADGES
1

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Thankful Level 3
  • Solver

View badges

Feeds

View by

Question


Parallel Pool Corruption on Linux
I'm using MATLAB's parallel computing capabilities to speed up code execution. Interestingly, when I tried to initialize the poo...

10 månader ago | 0 answers | 0

0

answers

Question


Speeding up a load file workflow
I'm working with a program that outputs simulation to results to many .mat files. To analyze these results, I need to load each ...

11 månader ago | 1 answer | 0

1

answer

Question


Signal Routing in Simscape
I'm not very familiar with SimScape, but I need to do some signal routing. Above, you're looking at two prismatic joints. My ...

ungefär ett år ago | 3 answers | 0

3

answers

Question


Input Argument Validation Issue
I'm having an issue with input argument validation using the arguments block. Here's a simplified version of my code function p...

mer än ett år ago | 1 answer | 0

1

answer

Question


Applying Colormaps to Scatter3 Plots
I'm trying to plot using scatter3, along with colormaps to understand correlations in my data. Currently, this is what I've dev...

mer än ett år ago | 1 answer | 0

1

answer

Question


Plotting a surface from a timetable
I've developed a timetable (attached), and I want to make a surface plot from it. I want "Start Time" and "Distance [km]" to be ...

mer än ett år ago | 2 answers | 0

2

answers

Solved


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

nästan 2 år ago

Solved


Triangle sequence
A sequence of triangles is constructed in the following way: 1) the first triangle is Pythagoras' 3-4-5 triangle 2) the second...

nästan 2 år ago

Solved


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

nästan 2 år ago

Solved


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

nästan 2 år ago

Solved


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

nästan 2 år ago

Solved


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

nästan 2 år ago

Solved


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

nästan 2 år ago

Solved


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

nästan 2 år ago

Solved


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

nästan 2 år ago

Solved


Find max
Find the maximum value of a given vector or matrix.

nästan 2 år ago

Solved


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

ungefär 2 år ago

Solved


Back to basics - mean of corner elements of a matrix
Calculate the mean of corner elements of a matrix. e.g. a=[1 2 3; 4 5 6; 7 8 9;] Mean = (1+3+7+9)/4 = 5

ungefär 2 år 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...

ungefär 2 år ago

Solved


Getting logical indexes
This is a basic MATLAB operation. It is for instructional purposes. --- Logical indexing works like this. thresh = 4...

ungefär 2 år ago

Solved


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

ungefär 2 år ago

Solved


Inner product of two vectors
Find the inner product of two vectors.

ungefär 2 år ago

Solved


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

ungefär 2 år ago

Solved


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

ungefär 2 år ago

Solved


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

ungefär 2 år ago

Solved


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

ungefär 2 år ago

Question


Vectorizing a Simulink Model
I'm interested in vectorizing a Simulink model so that it'll be more flexible and computationally efficient. I'm analyzing traff...

ungefär 2 år ago | 1 answer | 0

1

answer