Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

Gelöst


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

etwa 9 Jahre vor

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

etwa 9 Jahre vor | 1

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

etwa 9 Jahre vor | 0

| akzeptiert

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

etwa 9 Jahre vor | 0

| akzeptiert

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

etwa 9 Jahre vor | 0

| akzeptiert

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

etwa 9 Jahre vor | 0

| akzeptiert

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

mehr als 9 Jahre vor | 0

| akzeptiert

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

mehr als 9 Jahre vor | 0

Gelöst


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

mehr als 9 Jahre vor

Gelöst


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

mehr als 9 Jahre vor

Gelöst


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

mehr als 9 Jahre vor

Gelöst


modulus of a number
find the modulus of a given number

mehr als 9 Jahre vor

Gelöst


Values in Array
How many values are in the array

mehr als 9 Jahre vor

Gelöst


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;

mehr als 9 Jahre vor

Gelöst


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

mehr als 9 Jahre vor

Gelöst


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

mehr als 9 Jahre vor

Gesendet


imshow3
3D version of imshow.

fast 10 Jahre vor | 2 Downloads |

0.0 / 5

Gesendet


tiffread
Read multi-image TIFF file.

fast 10 Jahre vor | 5 Downloads |

0.0 / 5

Gelöst


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

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Gelöst


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

fast 10 Jahre vor

Mehr laden