Enviada


grammar and spelling check
Check spelling and grammar of comments

más de 9 años hace | 2 descargas |

0.0 / 5

Respondida
Dont get the required answer..please help
I am going to assume you want the following: A should stay the same, except for some positions. On the positions that A is 5 and...

más de 9 años hace | 0

Respondida
What does s = tf ('s') do?
You could think of this as something similar to _uint8(5)_. It is a way to generate a variable with the correct data-type, so yo...

más de 9 años hace | 0

Respondida
I am trying to plot different curves in gui, but i dont know how to add legend to it.
Try if this works: replace this for l=1:i legend([p(1:l)],Legend{1:l}) end with this legend(p(1:i),Legend(1:i))

más de 9 años hace | 1

| aceptada

Respondida
Why does this equation make complex number?
First off, have a look at the preview before you post a question. This code is unreadable and most people will not bother trying...

más de 9 años hace | 0

Respondida
V = [7 9 -8 9 3 -8 -5 1 10 10 0 -7]; Write a script file that will determine how many times the values increase in V when going from one entry to the next.
We are not paid consultants, so don't give orders. This is the place where you can find help if you get stuck, not the place whe...

más de 9 años hace | 0

Respondida
save data in a array
You forgot a semicolon (the ; sign) to suppress output and a was overwritten each loop itteration. There is a method to use l...

más de 9 años hace | 0

| aceptada

Respondida
How to delete rows in a table
As KL mentioned, this code is unreadable. Press the _{}Code_ button after selecting your code for proper formatting. However, I ...

más de 9 años hace | 0

| aceptada

Respondida
I prompt for a matrix name, to be plotted, how do get that that matrix name as a string without entering it as a string so that I can use it for the title of the plot?
You can find this solution <http://stackoverflow.com/questions/11453165/matlab-get-string-containing-variable-name here>. f...

más de 9 años hace | 0

Respondida
网格转换的问题
(Quoted answer copied from a <https://nl.mathworks.com/matlabcentral/answers/331274-how-to-generate-regular-square-meshes-instea...

más de 9 años hace | 0

| aceptada

Enviada


find_containing_folder
Find the full path of your calling function

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

0.0 / 5

Respondida
Error Out of memory.
The list below is shamelessly <https://nl.mathworks.com/matlabcentral/answers/331255-what-does-this-error-message-mean-error-usi...

más de 9 años hace | 0

Respondida
How to code Usernames and Passwords?
You could save the usernames and passwords in a (n_users,2) cell, and using _ismember_ to quickly find the entered combination i...

más de 9 años hace | 0

Respondida
Inpolygon input with faces and vertices?
I had 3D meshes without holes, but <https://www.mathworks.com/matlabcentral/fileexchange/43381-intriangulation-vertices-faces-te...

más de 9 años hace | 0

Respondida
I cant display my image
You can view the separate channels with figure(1),clf(1) subplot_rows=floor(sqrt(size(IM,3)); if subplot_rows==0,sub...

más de 9 años hace | 0

Respondida
Why MATLAB gives me this warning?
You are trying to find a zero of a function. This means Matlab will look for an x-value where the sign changes. During this proc...

más de 9 años hace | 1

| aceptada

Respondida
How can i plot a vertical line (x=constant) in a maximum of a curve ?
%First find the maximum values maxes(1)=max(p100(:));maxes(2)=max(p1k(:));maxes(3)=max(p100k(:));maxes(4)=max(p10M(:)); ...

más de 9 años hace | 0

Respondida
Biexponential fitting (non-linear regression)on Matlab
So you have a list of (La,t) combinations? With _fittype_ you can tell Matlab what function it should fit to. La0=La(t==0);...

más de 9 años hace | 0

Respondida
https://jp.mathworks.com/help/matlab/examples/using-fft.html
I am not a signal processing expert, but here goes. Regarding questions 1 and 2: The first element will contain information...

más de 9 años hace | 1

| aceptada

Respondida
How do i plot the integral against number points used?
_copied from comments_ total_samples=20; integral_value=zeros(1,total_samples); for n_samples=1:total_samples X=linspa...

más de 9 años hace | 1

Respondida
how can I draw flashing arrow on the plot?
t = text(0.5,0.5,'\leftarrow'); for blinks=1:10 set(t,'Visible','off') pause(0.5) set(t,'Visible','on'...

más de 9 años hace | 2

Respondida
How can I output my answer automatically with different sub-folders?
Have you tried a loop the filename formed with sprintf? for folder_number=1:5 text1 = fileread(sprintf('C:\Users\ASU...

más de 9 años hace | 1

| aceptada

Respondida
How to plot y-axies?
This is a logarithmic plot. So when you use the _semilogy_ function, you can use set(gca,'YTick',[1 2 8 16]) On newer ve...

más de 9 años hace | 0

Respondida
How to create a numerical variable from a string stored in a cell array ?
You can use _unique_ to generate the list of codes, followed by _ismember_ to find out the locations, so the result is a vector....

más de 9 años hace | 0

Respondida
quelle est la procédure pour recevoir le DVD Matlab R2017a ?
Pourquoi veut-tu le recevoir sur un DVD? Tu peut le télécharger <https://www.mathworks.com/downloads/web_downloads/select_releas...

más de 9 años hace | 0

Respondida
What are the different elements of the imregtform matrix T?
I'm betting Image Analist will give a much more complete answer than I ever could, but here are my pointers. The options you ...

más de 9 años hace | 1

| aceptada

Respondida
sorting a vector by another vector
You can use the second output of the _sort_ function to get the indices. Type _doc sort_ for more information and options. [...

más de 9 años hace | 1

Respondida
How to label stacked bar?
I did not test this code, but it should skip the 0 values hText=zeros(1,size(sample_data,2)); for n=1:size(sample_data,2...

más de 9 años hace | 1

| aceptada

Respondida
I want help to crop only route from map image like shown below. Is anyone help me with code?
To improve your chances on getting an answer, make sure to show what you already tried, show some effort. My first try would ...

más de 9 años hace | 0

Cargar más