Solved


Convert degrees to radians
Given input in degrees, output to radians

9 years ago

Solved


first element of matrix
find the first elements of a column matrix

9 years ago

Solved


Create a square matrix of zeros of even order
Create a square matrix of zeros of even order

9 years ago

Solved


Calculate the Number of Sign Changes in a Row Vector (No Element Is Zero)
For a row vector: V=[7 1 2 -3] there is one sign change (from 2 to -3). So, the function you write must return N=1. F...

9 years ago

Answered
i've created a function to gather x and y coordinates from user, but i dont know how to call them out in program
I'm not sure what you mean by "call them out in program", but you can call this function in the Command Window or in another scr...

9 years ago | 1

Answered
Help me with this problem
I don't think you need the for-loops here. Try this: A = [1 2 0 0; 2 1 2 0; 0 2 1 2; 0 0 2 1]; B = [0 5 34 22; 5 0 34 21...

9 years ago | 0

| accepted

Answered
Change specific color in an image to another one
This is a tough problem. Since you are using a raster image, objects that look purple are actually many small variations of purp...

9 years ago | 0

| accepted

Answered
How can I sort files into different folders?
Try this... Get the filenames: pathname = '\path\to\current\files'; ext = '*.csv'; % extension you care about d = ...

9 years ago | 0

| accepted

Answered
How do I put the text frim the excel file into the fprintf statement without using their actual names
This may not entirely answer your question, but hopefully it points you in the right direction. Suppose you have a vector of wee...

9 years ago | 0

| accepted

Answered
I have a gui and i want to have 4 buttons to pan my graph so one that goes left right up and down, how would i do this?
The easy answer: I would suggest using the built-in pan tool in the figure toolbar. The slightly more complicated answer: Try...

9 years ago | 0

| accepted

Answered
Syntax for modifying 'LineWidth' in graph?
If you have a figure, figure; % something plotted here... ax = gca; %axes handle Then to change the line width of ...

9 years ago | 0

Solved


Get 1-4-3-4-4
Get the value of the indices in the title and assign it to an array

9 years ago

Solved


Matrix Construction I
Given n, construct a matrix as shown in the example below. Example For n=8, the output should look like this: 1 2 3 4 ...

9 years ago

Solved


Basic commands - Greatest common divisor
Please write a function, which, will put as output greatest common divisor. Example: A = [-5 17; 10 0];...

9 years ago

Solved


modulus of a number
find the modulus of a given number

9 years ago

Solved


Values in Array
How many values are in the array

9 years ago

Solved


Basic commands - Least common multiple
Make a function which will return least common multiple of "a" and "b" Example: a=8; b=6; y=24;

9 years ago

Solved


Convert radians to degrees
Given input in radians, output to degrees

9 years ago

Solved


angle in regular polygon
Make a function which returns measure of interior angle in x-side regular polygon. x is as input. Please pay attention, that 1 ...

9 years ago

Submitted


imshow3
3D version of imshow.

9 years ago | 2 downloads |

0.0 / 5

Submitted


tiffread
Read multi-image TIFF file.

9 years ago | 1 download |

0.0 / 5

Solved


What do you get if you multiply six by nine?
The Hitchhiker's Guide to the Galaxy based task. Tip: 13-base numeral system

9 years ago

Solved


What does the "B" in Benoit B Mandelbrot stand for?
Tip https://en.wikipedia.org/wiki/Mandelbrot_set

9 years ago

Solved


Opposite task convert binary numbers array into array of decimal numbers.
Opposite task convert binary numbers array into array of decimal numbers. Example x=[ 11001000 ; 11001001 ; 11001010 ...

9 years ago

Solved


Opposite task convert string hexadecimal numbers array into array of decimal numbers .
Opposite task convert string hexadecimal numbers array into array of decimal numbers . Example x=[ '208'; '209'; '20A'; ...

9 years ago

Solved


Calculate the values of a polynomial.
Calculate the values of a polynomial.Input parameter p - vector of polynomial coefficients, x - matrix of the argument values. ...

9 years ago

Solved


Multiply two polynomials p and q given in in vector representation.
Multiply two polynomials p and q given in vector representation. Example p=[-2 0 1 -1 3 2] q=[1 0 -1 2 ...

9 years ago

Solved


Get derivarive of polynomial given as vector array.
Get derivarive of polynomial given as vector array. Example p=[ 1 2 0 5 0 3 ]; result=[ 5 8 0 10 ...

9 years ago

Solved


Zero padding
Create y = {'01';'02';'03';'04';'05';'06';'07';'08';'09';'10'} from x = 1:10

9 years ago

Load more