Risolto


The 5th Root
Write a function to find the 5th root of a number. It sounds easy, but the typical functions are not allowed (see the test su...

oltre 6 anni fa

Risolto


Tell me the slope
Tell me the slope, given a vector with horizontal run first and vertical rise next. Example input: x = [10 2];

oltre 6 anni fa

Risolto


Narcissistic number ?
Inspired by Problem 2056 created by Ted. In recreational number theory, a narcissistic number is a number that is the sum of ...

oltre 6 anni fa

Risolto


Parasitic numbers
Test whether the first input x is an n-parasitic number: <http://en.wikipedia.org/wiki/Parasitic_number>. ( _n_ is the second in...

oltre 6 anni fa

Risolto


Number of 1s in a binary string
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input stri...

oltre 6 anni fa

Risolto


Min of a Matrix
Return the minimum value in the given matrix.

oltre 6 anni fa

Risolto


inner product of two vectors
inner product of two vectors

oltre 6 anni fa

Risolto


Return the first and last character of a string
Return the first and last character of a string, concatenated together. If there is only one character in the string, the functi...

oltre 6 anni fa

Risolto


Sum of diagonal of a square matrix
If x = [1 2 4; 3 4 5; 5 6 7] then y should be the sum of the diagonals of the matrix y = 1 + 4 + 7 = 12

oltre 6 anni fa

Risolto


Make one big string out of two smaller strings
If you have two small strings, like 'a' and 'b', return them put together like 'ab'. 'a' and 'b' => 'ab' For extra ...

oltre 6 anni fa

Risolto


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

oltre 6 anni fa

Risolto


Is this triangle right-angled?
Given three positive numbers a, b, c, where c is the largest number, return *true* if the triangle with sides a, b and c is righ...

oltre 6 anni fa

Risolto


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

oltre 6 anni fa

Risolto


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

oltre 6 anni fa

Risolto


Simple equation: Annual salary
Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

oltre 6 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 6 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 6 anni fa

Risposto
What is the matrix code for column vectors
There are a few ways to do this, for example: x = [u' v (u' + v)] The apostrophe can be used to transpose a matrix. You ...

quasi 7 anni fa | 0

Risposto
How can I find a sub-folder in the (just in the) current directory ?
You can specify _exist_ to only look in the current directory. For example: lFolder = 'MyFolder'; if(exist([cd filesep l...

quasi 7 anni fa | 0

| accettato

Risposto
How to convert Matlab figure to excel sheet ?
See this related question: <https://uk.mathworks.com/matlabcentral/answers/100687-how-do-i-extract-data-from-matlab-figures>

quasi 7 anni fa | 0

Risposto
Why function blpsrv is 'undefined' after Datafeed Toolbox is installed
See the product requirements at this <https://uk.mathworks.com/products/availability.html#DF link> It states that Bloomberg d...

quasi 7 anni fa | 0

Risposto
Extract group of identical values from an array
a = [0 0 0 1 1 1 0 0 0 0 0 1 1 1 1 0 0 1 1]; nStart = find(diff([0 a 0]) == 1); nEnd = find(diff([0 a 0]) == -1)...

quasi 7 anni fa | 0

Risposto
Which version of system generator supported by MATLAB 2016a ?
See the following link: <https://www.xilinx.com/support/answers/55830.html AR# 55830> It states that for Vivado System Genera...

quasi 7 anni fa | 0

| accettato

Risposto
How do I import a timestamp from Excel/csv?
Try this: [NUMERIC, TXT, RAW] = xlsread('My_Spreadsheet_Name'); You'll find the timestamps in both the TXT and RAW outp...

quasi 7 anni fa | 1

Risposto
which versions are compatible for matlab, intel visual fortran and visual studio
Follow this link: <https://uk.mathworks.com/support/sysreq/previous_releases.html System Requirements & Platform Availability> ...

quasi 7 anni fa | 0

Risposto
how can I extract first number of cell?
a ={[8,21,291,94,455,241,227,36,130] [15,248,455,241,227,36,130] [21,291,94,455,241,227,36,130] [36,130]}; *Question 1:* ...

quasi 7 anni fa | 2

| accettato

Risposto
How can I change tunable parameters in generated C++ class from private to public?
If you set parameter member visibility option to 'public' this will move the tunable parameters structure from private to public...

oltre 8 anni fa | 1

| accettato

Risposto
I am unable to identify the two simulink blocks that are shown in the snapshot of a Control System Simulink Model.
The first block is the 'Display' block. See <http://mathworks.com/help/simulink/slref/display.html> The second block is the '...

oltre 8 anni fa | 0

Carica altro