Gelöst


Add two numbers
Given a and b, return the sum a+b in c.

fast 9 Jahre vor

Gelöst


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

fast 9 Jahre vor

Gelöst


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

fast 9 Jahre vor

Gelöst


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

fast 9 Jahre vor

Beantwortet
how to use imwrite in matlab?
imwrite(A,filename,fmt); This is the general format of imwrite. Its not necessary that image needs to be present in u...

fast 9 Jahre vor | 0

Beantwortet
In which scenarios the developer prefer bug finder and code prover ?
U can have a look at these links.It explains cleanly wht the two function does. <http://in.mathworks.com/products/polyspace-bug...

fast 9 Jahre vor | 0

Beantwortet
how to calculate standared deviation of each block images
I think these links will be helpfull <http://www.mathworks.com/matlabcentral/answers/uploaded_files/12188/blockproc_demo1.m> ...

fast 9 Jahre vor | 0

Beantwortet
if statement with message display
After each message1 put the msgbox. U can just use msgbox(message1);

fast 9 Jahre vor | 0

Beantwortet
how can i calculate MSE and PSNR of RGB color image
clc; [filename1,pathname]=uigetfile('*.*','Select the original image'); image1=imread(num2str(filename1...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
How do i convert my .m code into a simulink?
Look at this Link <http://www.mathworks.es/es/help/simulink/ug/creating-an-example-model-that-uses-a-matlab-function-block.h...

fast 9 Jahre vor | 0

Frage


How to play Audio File
A= testing; B= [ten; twenty; fifty; hundered; fivehundered; thousand]; G...

fast 9 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Please I need help, i am running a code but i am receiving an error message: Attempted to access Px(1.18059); index must be positive integer or logical
Its a floating point error down at the 5th significant figure. If you simply round "Px", it'll MAY work

fast 9 Jahre vor | 0

Beantwortet
2 M file interaction
function f1=im() im=imread('cameraman.tif'); f=im(3,3); b=1; delta=20; wi=1; %insertion ...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
how to use matlab project (matlab code) with C#
<http://in.mathworks.com/matlabcentral/answers/uploaded_files/5510/MATLAB%2520-%2520C# interfacing.pdf> I think this is what ...

fast 9 Jahre vor | 0

| akzeptiert

Frage


how to use this symbol in matlab?? ±
I have a if loop where i need to check the condition.The loop is something like this: if(tht(1)==thf(1)) S='O...

fast 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Detection of orginal and Fake???
I have a set of original images and fake images of Indian Currency Notes.I wanted to know how to extract the features of those a...

fast 9 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
link .dll files with matlab
It looks like you are using a MEX-function which used to have a .dll extension in very old releases of MATLAB. They now have ext...

fast 9 Jahre vor | 1

Beantwortet
How to seperate LL subband in dwt
[LL,LH,HL,HH] = dwt2(X,'db1'); % x is input image figure;imshow(LL); % shows LL subband

fast 9 Jahre vor | 0

Beantwortet
how to make a function that take an integer as input and return ture if this prime otherwise false
function result = isprime2(number) number=5; result=true; %% check if number is a nonnegative integer if floor...

fast 9 Jahre vor | 0

Beantwortet
To accept two numbers from the user; Display all prime numbers between these two numbers.
This is for perfect numbers where u can change the values of m and n where they are the two input numbers n=100; m=10; ...

fast 9 Jahre vor | 0

Beantwortet
To accept two numbers from the user; Display all prime numbers between these two numbers.
Try this for Armstrong number: clear, clc % Let i take two numbers say 100 to 999 for i = 100 : 999 %...

fast 9 Jahre vor | 0

Beantwortet
To accept two numbers from the user; Display all prime numbers between these two numbers.
clc num1 =input('Enter num1 value '); num2 =input('Enter num2 value '); n = num1 : num2; p = isprime(n); n(p) ...

fast 9 Jahre vor | 0

| akzeptiert

Beantwortet
How to eliminate uneven illumination from an imgae with respect to another image?
Image=imread('aswathy_33_crop.jpg'); Image_rgb =Image; Image_rgb = imresize(Image_rgb, [400 400]); Image_rgb = ...

fast 9 Jahre vor | 1

Beantwortet
how to write code for finding KL transform in Matlab
Well here is the code clc; close all; clear all; I=imread('cameraman.tif'); I=im2double(I); m=1; for i=1:...

fast 9 Jahre vor | 0

Beantwortet
How to display all prime numbers between two number input by user?
clc num1 =input('Enter num1 value '); num2 =input('Enter num2 value '); n = num1 : num2 ; p = isprime(n); n(p) ...

fast 9 Jahre vor | 2

Frage


Unable to determine the codec required.
I am using 2013a version of matlab and windows xp.When i run the code of videoreader i get this error.So what type of codec need...

fast 9 Jahre vor | 2 Antworten | 1

2

Antworten

Frage


Attempted to access Y(2,3009); index out of bounds because size(Y)=[64,576].
Y = sort(cell2mat(transpose(C))); a=zeros(64,1); col1=1; col2=64; for z=1:47 for i=1:64 ...

fast 9 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Has anyone implemented moravec corner detector in matlab??
This is what i have tried.But with very less accurate. clear all close all clc tic I=imread('panorama...

fast 9 Jahre vor | 2 Antworten | 0

2

Antworten

Beantwortet
Can u help me!!! Pls. Thx u much
threshold=25; for f=1:frames I=read(obj,f); figure(1);imshow(I);title('Input Video Sequence'); ...

fast 9 Jahre vor | 0

Beantwortet
how to train ocr database in matlab....
I think asking for a coding is not relevant. Anyhow u can go through this link http://in.mathworks.com/matlabcentral/fileexchang...

fast 9 Jahre vor | 1

Mehr laden