Solved


Pi Estimate 1
Estimate Pi as described in the following link: <http://www.people.virginia.edu/~teh1m/cody/Pi_estimation1.pdf>

12 maanden ago

Solved


Calculate area of sector
A=function(r,seta) r is radius of sector, seta is angle of sector, and A is its area. Area of sector A is defined as 0.5*(r^2...

12 maanden ago

Solved


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

12 maanden ago

Solved


Count consecutive 0's in between values of 1
So you have some vector that contains 1's and 0's, and the goal is to return a vector that gives the number of 0's between each ...

12 maanden ago

Solved


Sum of series IX
What is the sum of the following sequence: Σ 1/k! for k=1...n for different n?

12 maanden ago

Solved


Sum of series VIII

12 maanden ago

Solved


Sum of series
a(n) = n^2 - (n-1)^2 find the summation of the series upto n i.e. a(1)+a(2)+...+a(n)

12 maanden ago

Solved


Sum of series VI
What is the sum of the following sequence: Σk⋅k! for k=1...n for different n?

12 maanden ago

Solved


Sum of series V
What is the sum of the following sequence: Σk(k+1) for k=1...n for different n?

12 maanden ago

Solved


Sum of series IV
What is the sum of the following sequence: Σ(-1)^(k+1) (2k-1)^2 for k=1...n for different n?

12 maanden ago

Solved


Sum of series III
What is the sum of the following sequence: Σ(2k-1)^3 for k=1...n for different n?

12 maanden ago

Solved


Sum of series I
What is the sum of the following sequence: Σ(2k-1) for k=1...n for different n?

12 maanden ago

Solved


Sum of series VII
What is the sum of the following sequence: Σ(km^k)/(k+m)! for k=1...n for different n and m?

12 maanden ago

Solved


Calculate the Distance to Source of Lightning
Lightning discharge heats air rapidly with lightning channels reaching temperatures of up to 50,000 degrees Fahrenheit (which is...

12 maanden ago

Solved


Calculate days until Christmas
Provided with inputs year, month, day e.g. 2019,11,12, calculate the number of days until the next Christmas day, i.e. the next ...

12 maanden ago

Solved


Extract diagonal of sparse quadratic form
Consider the matrix A and vector v given by, A=round(sprand(5e3,1e4,1/1e4*100)*100); v=randi(10,width(A),1); Write a rout...

ongeveer een jaar ago

Solved


Implement the signum function
The signum function is a common mathematical function, which has the following definition : If x => 0, its value is 1, if x < 0...

meer dan een jaar ago

Question


How to Generate Smooth Transitional Trapezoidal Signal in Simulink
Hi, everyone. I want to generate a custom signal demonstrated as follow image in Simulink, I have tried the Signal Editor Block,...

meer dan een jaar ago | 1 answer | 0

1

answer

Question


Changing the Topic Name in DDS Dictionary have no effect in AutoGenerated XML file
Hello, everyone. I want to create the DDS Application with DDS Blockset. I have changed the Topic Name in DDS dictionary which...

meer dan een jaar ago | 1 answer | 0

1

answer

Question


How to configure ip address/port with DDS Blockset
I have build the DDS application shapesdemo.exe with DDS Blockset. I have test the communication between shapesdemo.exe with Op...

meer dan een jaar ago | 1 answer | 0

1

answer

Question


FastDDS ShapesDemo Can not Communicate with DDS Blockset ShapesDemo
I followed the steps illustrated in DDS Blockset ShapeExample.mlx file and have build the shapesdemo.exe successfully. I first s...

meer dan een jaar ago | 2 answers | 0

2

answers

Answered
Parse error at x
The error message shows that there is a unrecognized varialble x_initial. You should initialize it. x_initial=[.5;.5;.5];

meer dan een jaar ago | 0

Answered
Trouble with handling values in anti-diagonal of a square matrix
diagVal=8; otherVal=1; nrows=8; if mod(nrows,2) % odd A=(diagVal-otherVal)*eye(nrows) + (diagVal-otherVal)*fliplr(eye(...

meer dan een jaar ago | 1

Answered
Hello, I have a cell array with the list of files I would like to delete. However I would not like to use a for loop to loop through each file to delete it.
maybe you can use cellfun. Files={'1.txt','2.txt','3.txt'}; cellfun(@delete,Files)

meer dan een jaar ago | 0

Answered
Solving matrix equation in Matlab,
Using vectorization operator vec, which transfer a matrix to a column vector through stacking matrix's columns vertically. There...

meer dan een jaar ago | 0

| accepted

Answered
Making loop for a function 'xlsread'
xlsread is not recommended, you can use readtable/readmatrix/readcell depend on what type of data you want to read. The followi...

meer dan een jaar ago | 1

Question


Where is the Location of CMakeLists File When I Build Simulink Model With CMake?
I want to build the shapesdemo Model which is incorporated in DDS Blockset Examples. I follow the steps illustrated in accompani...

meer dan een jaar ago | 2 answers | 0

2

answers

Question


CMake Error When Building DDS Blockset shapesdemo Example Model
I want to build the shapesdemo Simulink Model which is incorporated in DDS Blockset Examples. I follow the steps illustrated in ...

meer dan een jaar ago | 0 answers | 0

0

answers

Question


How to implement Ethernet Communication in Simulink Desktop Real-Time
I want to use Ethernet Communication within Simulink Desktop Real-Time. But I do not find corresponding I/O block in Simulin...

bijna 2 jaar ago | 2 answers | 0

2

answers

Answered
How to take the mean of each four adjacent position in a matrix?
A=randi(10,1536,2048); % test Matrix M=zeros(768,1024); % result Matrix for row=1:768 for col=1:1024 M(row,col...

meer dan 3 jaar ago | 1

| accepted

Load more