Statistica
RANK
138.102
of 295.569
REPUTAZIONE
0
CONTRIBUTI
6 Domande
0 Risposte
ACCETTAZIONE DELLE RISPOSTE
16.67%
VOTI RICEVUTI
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Domanda
Patch : intersecting polygon regions leaving holes at intersections.
I created a function which plots a line with variable thickness along the array. I am using Patch for that. The problem is t...
circa 2 anni fa | 1 risposta | 0
1
rispostaDomanda
Patch : Overlapping geometry , chessboard colors.
I want to fill the area with only one color : white. I'm using patch. But it's leaving transparent area where it overlaps . How ...
circa 2 anni fa | 0 risposte | 0
0
risposteDomanda
How to trace the end point of my vector without losing other plots?
I have created a short animation using plot where I made a branch of 10 line segments. The branch is waving in the air. I want t...
circa 3 anni fa | 1 risposta | 0
1
rispostaRisolto
We love vectorized solutions. Problem 1 : remove the row average.
Given a 2-d matrix, remove the row average from each row. Your solution MUST be vectorized. The solution will be tested for ac...
oltre 5 anni fa
Domanda
Multiple Colormaps in one figure.
I am trying to use multiple colormaps in one figure using subplot. but matlab only shows one colormap for all subplots. This is ...
oltre 5 anni fa | 1 risposta | 0
1
rispostaRisolto
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 ...
oltre 5 anni fa
Problema
Pascal's Equilateral triangle inside a Matrix!!!
Given a number of row 'n', generate the following pascal's matrix 'p' where spaces are filled by 'zeros'. number of row, n = ...
oltre 5 anni fa | 2 | 17 risolutori
Risolto
Counting 1,2,3,4.......9 inside a Matrix!!
Given a number 'n', generate a nxn matrix such that you get a following matrix! n=4 1 2 3 4 5 6 ...
oltre 5 anni fa
Risolto
Better bullseye matrix
<http://www.mathworks.com/matlabcentral/cody/problems/18-bullseye-matrix Problem 18> asks to create a bullseye matrix like this:...
oltre 5 anni fa
Risolto
Bullseye Matrix
Given n (always odd), return output a that has concentric rings of the numbers 1 through (n+1)/2 around the center point. Exampl...
oltre 5 anni fa
Risolto
Back to basics 21 - Matrix replicating
Covering some basic topics I haven't seen elsewhere on Cody. Given an input matrix, generate an output matrix that consists o...
oltre 5 anni fa
Risolto
Summing digits
Given n, find the sum of the digits that make up 2^n. Example: Input n = 7 Output b = 11 since 2^7 = 128, and 1 + ...
oltre 5 anni fa
Risolto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...
oltre 5 anni fa
Risolto
Area of a triangle
A triangle is given with base *'b'* ,vertical hight *'h'* . then find it's area.
oltre 5 anni fa
Risolto
Area of a circle
Given the radius x, y would be the area of a circle. Pi = 3.1416
oltre 5 anni fa
Risolto
Square a Number
Given an input x, return y, which is equal to the square of x.
oltre 5 anni fa
Risolto
Create sequnce 1 4 9 16 25.........
Create sequnce 1 4 9 16 25......... upto entered input value using matlab scripting commands. Let y be output and x be input
oltre 5 anni fa
Risolto
03 - Matrix Variables 5
Make the following variable: <<http://samle.dk/STTBDP/Assignment1_3e.png>>
oltre 5 anni fa
Risolto
Is this triangle right-angled?
Given any three positive numbers a, b, c, return true if the triangle with sides a, b and c is right-angled. Otherwise, return f...
oltre 5 anni fa
Risolto
Side of an equilateral triangle
If an equilateral triangle has area A, then what is the length of each of its sides, x? <<http://upload.wikimedia.org/wikipe...
oltre 5 anni fa
Risolto
Find out sum of all elements of given Matrix
Find out sum of all elements of given Matrix A=[1 2 3;4 5 6 ;7 8 9]; Answer must be: 45 *If you like this problem, pl...
oltre 5 anni fa
Risolto
Unit Matrix
Given n, you should return an n-by-n unit matrix. Example: If input is n=2 then A = [ 1 0 0 1 ] If input ...
oltre 5 anni fa
Risolto
Beginner's Problem - Squaring
Try out this test problem first. Given the variable x as your input, square it by two and put the result in y. Examples: ...
oltre 5 anni fa
Risolto
multiply by three
Given the variable x as your input, multiply it by 3 and put the result equal to y. Examples: Input x = 2 Output y is ...
oltre 5 anni fa
Risolto
Y=X
Given an input variable x, output a variable y that is equal in value to x. Example: Input x = 1 Output y is 1 Inp...
oltre 5 anni fa
Risolto
"mirror" matrix
Create n x 2n "mirror" matrix of this type: Examples For n = 2 m = [ 1 2 2 1 1 2 2 1 ] For n = 3 m = ...
oltre 5 anni fa
Risolto
Create a Multiplication table matrix...
Create a product table in this format: P = [ 1 2 3 4 5; 2 4 6 8 10; 3 6 9 12 15; 4 8 12 1...
oltre 5 anni fa
Risolto
Pascal's Matrix
Given an integer n ≥ 0, generate the ( _n_+1) × ( _n_+1) lower triangular <http://en.wikipedia.org/wiki/Pascal_matrix P...
oltre 5 anni fa