photo

Shawn Duenas


Aktiv seit 2019

Followers: 0   Following: 0

Nachricht

Noise & Vibration Consultant for Rail Industry

Statistik

  • Knowledgeable Level 1
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Graphics error 2018b: How to move y tick labels next to ticks instead of on top of ticks
In Matlab 2018b, the y-tick numbers are plotted on top of the axis line (on top of the tick actually) and the tick dir seems to ...

mehr als 5 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
Graphics error 2018b: How to move y tick labels next to ticks instead of on top of ticks
The thread below has a similar problem and seems to track it down to plotting log-scale and reverse direction. Seems like a Matl...

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Writing Data to Excel file
To print to different worksheets in the same spreadsheett: xlswrite(myFile, F_drag, 'forceValues') xlswrite(myFile, V_rng, 'Ve...

mehr als 5 Jahre vor | 0

Beantwortet
How to use XLSWRITE function in the for loop?
Keep a counter of the number of rows: insertRow=1; for iMat=1:nMat nRow=size(M,1); xlsRange=['A',int2str(insertRow),...

mehr als 5 Jahre vor | 1

Beantwortet
Problems about extracting all the data files
replace that line with: ufnames = [ufnames, [fdir fname ext]]; it seems like you're trying to concatenate everything together....

mehr als 5 Jahre vor | 0

| akzeptiert

Beantwortet
Why do tick directions change when log scaling x-axis?
Try this: ha1.XDir = 'normal'; set(ha1,'view',[-180,-90]) I get that same issue: Changing ytick direction is backwards. Chec...

mehr als 5 Jahre vor | 0

| akzeptiert