Beantwortet
help with Tic Tac toe
Hmm, maybe I spoke too soon on the centering. Size can be set by adding a 'name,value' pair to the text command. text(x,y,play...

etwa 3 Jahre vor | 0

| akzeptiert

Frage


dlmwrite does not append to file
I am writing headers and data to a text file, and I am able to write the headers using fprintf, so I know my filepath is correct...

etwa 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Access matrix values inside of a function
I believe this is the purpose of global variables, but I could be wrong. I don't really use them much.

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to average each row from two indivisual comlum vectors?
The mean command has an option to average in a specific dimension. A = [1 4; 2 3; 3 2; 4 1]; B = mean(A,2);

etwa 3 Jahre vor | 0

Beantwortet
Changing work space values
To change values for existing variables, you can define the new values for the variable in the command line, write/edit a script...

etwa 3 Jahre vor | 0

Beantwortet
How to pick files from sub-folder
I recommend using dir to capture all the contents of your parent folder within a variable. Then you can use the contents of that...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
How can I allow the user to choose what to do?
Some basic ways to get input from the user include commands such as uigetfile, uigetdir, and input. I recommend the last, couple...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
How can I use loop to produce multiple graphs?
If you want individual graphs, add the following inside the loop, before the yyaxis command: ... figure(i) yyaxis left ... ...

etwa 3 Jahre vor | 0

Beantwortet
Close actxserver file after deleting variables
For the record, I never did find a way to do this, instead I put a bit of code at the beginning of my script to look for an open...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to pull specific data from multiple excel sheets into a single table
Reading excel files in with MATLAB can be done in a couple of different ways. First is xlsread, which might be the most applicab...

etwa 3 Jahre vor | 0

Beantwortet
How to remove rows or Cols in MATLAB?
You can remove a section of an array in MATLAB by redefining the array without that specified section. For your example, of you ...

etwa 3 Jahre vor | 1

Beantwortet
Loop through a list of excel file names in a folder
I recommend something like dir for automatic retrieval. Should be able to set it to find excel files only. pathname = 'yourfile...

etwa 3 Jahre vor | 0

Beantwortet
Interpolating missing values according to time vector
I don't know if there is a single command that would do what you're asking, though others might know of one. A fairly concise w...

etwa 3 Jahre vor | 1

Beantwortet
Interpolate value of point
I'm assuming you have the data for the surface points. If so, I believe interp2 will do what you're asking.

etwa 3 Jahre vor | 0

| akzeptiert

Frage


Close actxserver file after deleting variables
I have a script that opens an excel workbook in the actxserver so it can create plots for some data. I have been modifying the c...

etwa 3 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Using for loops in order to find average of matrix
You can use mean to average all values in a certain direction. mu = 2; SD = 3; m = 1000; n = 100000; random_matrix = randn(...

etwa 3 Jahre vor | 1

| akzeptiert

Beantwortet
Plotting for a Loop
Each time you run the plot command you're only plotting a single point, which doesn't work very well with plot. I recommend y...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
Indexing to return segments
I can't actually use ischange in my version of MATLAB, so take what I suggest with a grain of salt. It looks like the index out...

etwa 3 Jahre vor | 1

Beantwortet
loop: stop if value repeats
I'm assuming you have all four of these commands within some kind of loop. Without the loop I have not tested what I'm going to ...

etwa 3 Jahre vor | 0

Beantwortet
How to sequentially import csv files, access, edit and save the data?
To save the results of a command each time you go through the loop you need to index the output. I recommend just adding a struc...

etwa 3 Jahre vor | 0

Beantwortet
Creating matric of multiple arrays
You should be able to accomplish what you're looking for with some matrix indexing, no loop necessary. x = 1:100; k = 12; a =...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
What is wrong with this code?
I would think you could do this with cellfun and some logic, but I could be wrong. cellfun(@(s) s((1:end)<0,1) = NaN,Radiidiffe...

etwa 3 Jahre vor | 0

Beantwortet
Textscan for comma seperated file with mixed format
Have you tried using readtable? It has a delimited text option, and tends to be a bit better about handling different types of d...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
Help with MATLAB code on low rank assumption using nuclear norm using CVX and Matlab!
I believe the issue is with calling Xe(:) instead of Xe. Others who know more might be able to correct me, but my working theory...

etwa 3 Jahre vor | 0

Beantwortet
Error in importing the matlab ouput to excel file
It looks like you're trying to output a symbolic variable to excel, which I don't think is allowed. Try converting to double fir...

etwa 3 Jahre vor | 0

Beantwortet
multiple matrix step through for loop
Instead of doing a loop you can just do a bit of logic to the arrays. risk = ones(length(age),1,1); risk(age>=75&bmi>=50&smoke...

etwa 3 Jahre vor | 0

| akzeptiert

Beantwortet
For loop to repeat the loop with different set of value
You are seeing only the final results because you do not have your output variables indexed. for i=1:length(SNRDB) f...

etwa 4 Jahre vor | 0

Beantwortet
Read every file in a folder
To get information on all the files in a folder use dir, or getdir. From there, just loop through the elements of the dir output...

etwa 4 Jahre vor | 0

Beantwortet
Store values in an array from loop
I'm not sure what you mean by printing the 'name' associated to a data set, but there are my modifications to what you have setu...

etwa 4 Jahre vor | 0

| akzeptiert

Beantwortet
i need some help
If I'm understanding what you're trying to do, you're only missing parentheses. >> n = 10; >> p(10) = 2; >> p(n) p(n) = ...

etwa 4 Jahre vor | 0

Mehr laden