Respondida
Error 5 installing matlab
http://www.mathworks.com/matlabcentral/answers/99600-why-do-i-receive-a-winzip-error-error-5-running-command-setup-exe-during-th...

alrededor de 5 años hace | 0

Respondida
Vectorize 3 for loops
Hi, Here is your answer: Max = 5; tab = randi(10,50,60,10); second_tab = randi(5,50,60,10); new_tab = second_tab*5; new_ta...

alrededor de 5 años hace | 0

| aceptada

Respondida
find in cell array
Hi, The simple problem with your code is it is not able to extract the indices of the value 1 which has been obtained by MM. I...

alrededor de 5 años hace | 1

Respondida
CSVread empty cells non zero
Hi, The answer is simple. You try with xlsread [A, B, C ] = xlsread('Data.xlxs'); Here A gives all the numbers of the matrix. ...

alrededor de 5 años hace | 1

Respondida
How to Sum functions?
Uff!!!. I think I finally found a solution to this. I will not assure this is the best way to do it. clear all; %initialize ...

alrededor de 5 años hace | 0

| aceptada

Respondida
how to plot fewer marker ?
Hi, Can't you just delete a few data from VarName10? You can write a simple code like this VarNamePlot = VarName10; m = leng...

alrededor de 5 años hace | 0

| aceptada

Respondida
how to make 3 lsbs set to zero
I have written a sample code. Please take a look at it. one point to be noted would be when you convert a decimal to binary in ...

alrededor de 5 años hace | 0

Respondida
How can I find if a line and a circle intersect.
If you have the matrix data with you then you can try to find common numbers between those two matrices. intersect(A,B); This ...

alrededor de 5 años hace | 0

Respondida
save result in cell
create a cell and then store them. Dont create the matrix at all result = cell(1,n) for k = 1:n result{k} = 106 ;%<calcul...

alrededor de 5 años hace | 0

Respondida
how to make 3 lsbs set to zero
Step1: load the rgb image step2: create a matrix image(x,y,:) Step3: convert values to binary>> de2bi Step4: replace the 3 lb...

alrededor de 5 años hace | 0

Respondida
Some of the lines in the code below does not execute, why?
Hi, I went through the code. Technically code has no problems with the code. Everyline is being executed. You can try it by hav...

alrededor de 5 años hace | 1

| aceptada

Respondida
Question involving nested 'for loops' pertaining to structs and cell arrays
I think the problem is simple. Try deleting the frames using the command clear . I am pretty sure that you are just overwrite pa...

alrededor de 5 años hace | 0

Respondida
How do i find the amplitude of a peak in my plot?
Hello, Find the slope for each case. When there is change in slope from positive to negative, its a peak. If the slope changes ...

alrededor de 5 años hace | 0

Respondida
MATLAB - xlswrite - how to avoid overwriting
Hey, Great question . I was also caught up in the same question but I know have the answer. So the logical thing to do woul...

alrededor de 5 años hace | 0

Respondida
Create a uniform empty cells between 2 data in excel file?
Please check this out: [num, as,ads] = xlsread('m.xlsx'); %take the required data A = num(1:48, 1:2); %initialize B B =...

alrededor de 5 años hace | 0

Respondida
Non zero min 3D matrix
You can remove all the for loops and make it more effecient A= rand(10,10,10); A(A==0) = inf; min(A) Here I am just replacin...

alrededor de 5 años hace | 1

Respondida
how to find the summation for the odd and even numbers(from 0 to 100) save odd number in sum1 and even in sum2
tryThis: N=100; Numbers = [1:1:N]; Even = Numbers((mod(Numbers,2) ==0)); Sum1 = sum(Even); odd = Numbers((mod(Numbers,2) ...

alrededor de 5 años hace | 0

Respondida
Problem with unique command
Hi, I think there is a confusion between the functions of IA and IC. lets consider an example A = [9 2 9 5]; [C, ia, ic] = u...

alrededor de 5 años hace | 1

| aceptada

Respondida
Writing Code for Identifying Objects in a Photo
I would suggest you read the book "machine learning with Maltab". This is a huge topic and there is not shortcut to learn this.

alrededor de 5 años hace | 0

Respondida
Why can't we continue writing small scripts in the MATLAB terminal as we can do in python terminal?
I am not really sure of this answer but I will just go ahead. In Matlab for a function to work you should create same file name...

alrededor de 5 años hace | 0

Respondida
Using loop inside loop curve fit and extract x intercept_Data Attached
I have done it using a for loop. You can also try without for loop too. Please do optimise the code with functions for your part...

alrededor de 5 años hace | 1

| aceptada

Respondida
Help combine the two scripts
% clear all; x=[2 2 2 2 2 2 2 2 2 2] autocorr(x); N=length(x); y=x; z=x; for i=1:N-1 for i=N-1:-1:1 x...

más de 5 años hace | 0

Respondida
How to write a function or loop if inputs of subsystem block is full then connect to other subsyem block in script?
please take a look at this site <https://in.mathworks.com/help/simulink/slref/add_line.html>

más de 5 años hace | 0

| aceptada

Respondida
Cell array of coordinates from two vectors
you should you at least one nested loop for k=1:length(X) z=[X(k) Y']; perms(Z); end

más de 5 años hace | 0

Respondida
calculate input of a system having output and transfer function
https://dsp.stackexchange.com/questions/16671/output-of-a-system-given-its-transfer-function-and-input-beginner Does this sol...

más de 5 años hace | 0

Respondida
Matching port number in two simulink model
%find all inports from both system Allinports1=find_system('PortSync/Subsystem1','BlockType','Inport'); Allinports2=find...

más de 5 años hace | 0

| aceptada

Respondida
How to use a string as name for variable/array?
I think the answer for this question is already provided here https://in.mathworks.com/matlabcentral/answers/35295-how-to-con...

más de 5 años hace | 0

Respondida
Simulink 2017a model window resuse preference?
Yes. This has been removed in the present versions of Matlab and you get the complete path of the model on the left top side of ...

más de 5 años hace | 0

Respondida
Is Varying Transfer Function description wrong?
You can take a0 common and make the first coefficient 1. from this you can set all the coefficient and then multiply the whole b...

más de 5 años hace | 0

| aceptada

Respondida
how to combine text files using load function?
Since you are trying to do in arrays you are not able to concancate You should try it using cell arrays. something like this ...

más de 5 años hace | 0

Cargar más