Respondida
how can i complement a DNA matrix using a binary vector?
Does the following help? in this example m=5 A0='ACGT' B='0000' m=5 for k=1:1:m B=[B;A0(randi(4,...

más de 9 años hace | 0

| aceptada

Respondida
Improve the precision when dealing with integers of very high order
Lakshitha you are asking a very interesting question. PC machines come with standard narrow and fixed number formats. ...

más de 9 años hace | 0

Respondida
Non-Sorted nx1 unique values
but this code seems to work with any randomly generated sequence. If it works for noise it works for any deterministic signal...

más de 9 años hace | 0

Respondida
Separating elements from a column
Waqar It seems you have the input and output signals of an amplifier. The way to solve this question is to 1.- invert ...

más de 9 años hace | 1

| aceptada

Respondida
How to fill a 3D plot?
Stephan 1st your code is confusing because your are not defining 1 square, you are defining 4 squares 2nd *it is a...

más de 9 años hace | 9

| aceptada

Respondida
How to calculate mean average percentage error in Matlab? (single array division)
'a priori' i see 4 possibilities, i hope you don't mind me using horizontal A and B instead of vertical: A=[1:10];B=1:2:20...

más de 9 años hace | 0

Respondida
syms but not int
Florin You have the following options: 1.- upgrade to R2016a or R2016b problem solved, whatever you key in, as long as s...

más de 9 años hace | 1

Respondida
How can we model this equation in simulink dx/dy + x + y = 1 where x is the input and y is the output.
Hi Basa got you this <</matlabcentral/answers/uploaded_files/65750/solving_equations_with_simulink2.jpg>> the upload ...

más de 9 años hace | 0

Respondida
Design a low pass filter using kaiser window
Like Start Strider points out you can manually key in filter parameter in the fvtool GUI, but can also key in all fvtool paramet...

más de 9 años hace | 2

| aceptada

Respondida
Design a band pass filter using kaiser window
Gehan thanks for voting my answer to your previous question <https://uk.mathworks.com/matlabcentral/answers/317190-design-...

más de 9 años hace | 0

Respondida
I extracting data from image using OCR and data present in data.Text format.I want check the spelling mistakes in data. I saw one example but it contain data in txt format.That comand not accepting Text format file.so please help me
check the 10 first links listed here <https://uk.mathworks.com/matlabcentral/fileexchange/?search_submit=fileexchange&query=o...

más de 9 años hace | 0

Respondida
What should my parameter be for the chi2pdf?
the parameter called 'degree of freedom' of a chi-square probability distribution is not the mean value but half the variance. ...

más de 9 años hace | 0

Respondida
Textscan ignores last element in CSV file if it is empty.
The following fixes the missing value format = ['%s' repmat('%f',1,6)]; delim = ','; fid=fopen('input_csv_sam...

más de 9 años hace | 1

| aceptada

Respondida
i need some help to do this assignment
Hi Abdalmoed the individual variables can be generated with command random and choosing the right parameters. 1.- the Un...

más de 9 años hace | 0

Respondida
how to remove (.) from strings in matlab
do you mean this? L='1.- Telegraph http://www.telegraph.co.uk/news/2016/12/13/spain-plans-replace-nazi-time-zone-gmt/'; ...

más de 9 años hace | 0

Respondida
Need to get dimensions to match and to return a 0 x 0 matrix for empty row.
DJ MATLAB moans, not because of if condition mismatch, but because the operator '==' doesn't work for cells, try this: c...

más de 9 años hace | 0

| aceptada

Respondida
Design a high pass filter using kaiser window
Hi Gehan there are different ways to build a HPF with Kaiser time windowing 1.- manually building the time window for a LP...

más de 9 años hace | 3

| aceptada

Respondida
Dijkstra algorithm to find the nodes on the shortest path and it's parcial distances
between your dijkstra function and Kirk's dijstra function there is a bit of difference. Why don't you have a look what is it th...

más de 9 años hace | 3

Respondida
How to find the max of a cell of a cell array
if all cells have same base type, you can use the following T1={1 2 3 4} cell2mat(T1) max(cell2mat(T1)) ans = ...

más de 9 años hace | 7

Respondida
Can someone show me how to find the slope of the curve created by the data below between the 3rd y value and the 31st y value.
Michael what about the following X=(0:31-1)*1.6; Y= [3.99878194204551 4.21622304481994 4.35153949206717 4.36017341484...

más de 9 años hace | 0

Respondida
Fast Fourier transform FFT
how do you expect noise to be the same, not even through 2 system you expect to be the same, but even the same system at differe...

más de 9 años hace | 0

| aceptada

Respondida
Can I concatenate single column arrays into a matrix with multiple columns and scalars?
Kevin I have changed your code to avoid the matrix mismatch errors, but I am not sure what is it that you are after with thes...

más de 9 años hace | 0

| aceptada

Respondida
combination of two matrices
There is not need to reshape [szA1 szA2]=size(A);[szB1 szB2]=size(B); [A(:,[1:floor(szA2/2)]) B(:,[1:floor(szA2/2)])...

más de 9 años hace | 1

Enviada


color and tag smith chart stability circles
show what side of Smith chart 2 port S parameters input and output circles is stable or unstable

más de 9 años hace | 1 descarga |

0.0 / 5
Thumbnail

Respondida
How to plot Smith chart?
Hi Mr Taker There are many ways to plot data on MATLAB Smith charts 1.- basic plot of single impedance clc;clear all;...

más de 9 años hace | 8

| aceptada

Respondida
Random Binary Matrix with certain weight
Moe the weight function that you may be asking for is the shape of w=randperm(numel(nA))/sum(nA) this w is only an ...

más de 9 años hace | 0

Respondida
How do I overlay an rgb image onto a background image?
Hi Lewis If I have understood your question correctly, you want to do the following: 1. clear all;clc A=imread('imag...

más de 9 años hace | 1

| aceptada

Pregunta


how to solve wave equation for nongrounded dielectric layer
Hi In the book Microwave Engineering, by D M Pozar, 4th edition, page 136 I would like to solve the transcendental pair of ...

más de 9 años hace | 0 respuestas | 0

0

respuestas

Respondida
Find string that has multiple substrings
Tyler 1.- Instead of any(~cellfun('isempty',strfind(A,'Car' 'fast'))) you should use something like any(~ce...

más de 9 años hace | 0

| aceptada

Respondida
how to plot with different distance on vertical axis
instead of plot(x,y) use function semilogx(x,y) try it if it really does what you want, would you please be so kind to mark m...

más de 9 años hace | 0

| aceptada

Cargar más